From 1cf0fc1609a4a573b92aa4cca37fb3f8334cad47 Mon Sep 17 00:00:00 2001 From: Li Jie Date: Thu, 18 Nov 2010 14:51:16 +0800 Subject: [PATCH] uemacs: add line.h in names.c to fix compiling error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Linus Torvalds --- names.c | 1 + 1 file changed, 1 insertion(+) 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},