aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Farina <tfransosi@gmail.com>2010-08-29 03:10:02 -0300
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-29 08:15:23 -0700
commitbd635515a690aa5d6a4f003594b984e12fa695b6 (patch)
treeb76fe6aab990e499b4665268cf4925881880885f
parent78f045749f10397c93b703dcfced19641e852e28 (diff)
downloaduemacs-bd635515a690aa5d6a4f003594b984e12fa695b6.tar.gz
uemacs/efunc.h: Get rid of a duplicated exported type called "names".
This type is already exported in edef.h Signed-off-by: Thiago Farina <tfransosi@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--edef.h1
-rw-r--r--efunc.h3
-rw-r--r--names.c11
3 files changed, 5 insertions, 10 deletions
diff --git a/edef.h b/edef.h
index 8731165..796e66e 100644
--- a/edef.h
+++ b/edef.h
@@ -10,7 +10,6 @@
#ifndef EDEF_H_
#define EDEF_H_
-
#include <stdlib.h>
#include <string.h>
diff --git a/efunc.h b/efunc.h
index 050f4a8..1dcf83b 100644
--- a/efunc.h
+++ b/efunc.h
@@ -372,9 +372,6 @@ extern int lock(char *fname);
extern int unlock(char *fname);
extern void lckerror(char *errstr);
-/* names.c */
-extern struct name_bind names[];
-
/* pklock.c */
extern char *dolock(char *fname);
extern char *undolock(char *fname);
diff --git a/names.c b/names.c
index 280f380..0700599 100644
--- a/names.c
+++ b/names.c
@@ -1,8 +1,8 @@
-/* Name to function binding table
-
- This table gives the names of all the bindable functions
- end their C function address. These are used for the bind-to-key
- function.
+/* Name to function binding table.
+ *
+ * This table gives the names of all the bindable functions
+ * end their C function address. These are used for the bind-to-key
+ * function.
*/
#include "estruct.h"
@@ -221,4 +221,3 @@ struct name_bind names[] = {
{"", NULL}
};
-