diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-24 09:47:35 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-05-24 09:47:35 +0000 |
commit | 052900f209b5cb4ae608a110572fd25c69fe5818 (patch) | |
tree | 38e9022f74eeb0cb24eee4cc09934a2c92b9ff84 /usr.bin/mg/extend.c | |
parent | b2c6a8db135f97b90dd96de763a7dd075b34ffef (diff) |
Break out function -> name mappings to an own file.
Add a possibility to dynamically extend the function table.
Diffstat (limited to 'usr.bin/mg/extend.c')
-rw-r--r-- | usr.bin/mg/extend.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mg/extend.c b/usr.bin/mg/extend.c index d24770dc2f6..5ef729af5df 100644 --- a/usr.bin/mg/extend.c +++ b/usr.bin/mg/extend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: extend.c,v 1.15 2001/05/24 03:05:22 mickey Exp $ */ +/* $OpenBSD: extend.c,v 1.16 2001/05/24 09:47:33 art Exp $ */ /* * Extended (M-X) commands, rebinding, and startup file processing. @@ -6,6 +6,7 @@ #include "def.h" #include "kbd.h" +#include "funmap.h" #ifndef NO_MACRO #include "macro.h" |