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>
This commit is contained in:
Li Jie 2010-11-18 14:51:16 +08:00 committed by Linus Torvalds
parent 10ae171147
commit 1cf0fc1609
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include "estruct.h"
#include "edef.h"
#include "efunc.h"
#include "line.h"
struct name_bind names[] = {
{"abort-command", ctrlg},