aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLi Jie <eltshanli@gmail.com>2010-11-18 14:51:16 +0800
committerLinus Torvalds <torvalds@linux-foundation.org>2010-11-18 08:28:17 -0800
commit1cf0fc1609a4a573b92aa4cca37fb3f8334cad47 (patch)
tree214248be11c2e33f3113af0c7e30593a6a7fa70b
parent10ae1711470749d10c2aee32d3e79f7568e5dcf7 (diff)
downloaduemacs-1cf0fc1609a4a573b92aa4cca37fb3f8334cad47.tar.gz
uemacs: add line.h in names.c to fix compiling error
I got following errors while compiling uemacs: names.c:132: error: ‘insspace’ undeclared here (not in a function) names.c:217: error: ‘yank’ undeclared here (not in a function) make: *** [names.o] Error 1 It looks like names.c needs line.h for function declarations. Signed-off-by: Li Jie <eltshanli@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--names.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/names.c b/names.c
index 5d73c76..4ee6228 100644
--- a/names.c
+++ b/names.c
@@ -8,6 +8,7 @@
#include "estruct.h"
#include "edef.h"
#include "efunc.h"
+#include "line.h"
struct name_bind names[] = {
{"abort-command", ctrlg},