diff src/cmds.c @ 109509:4b7ca75642a8

Make internal_self_insert static * cmds.c (internal_self_insert): Make static. * lisp.h (internal_self_insert): Remove declaration.
author Andreas Schwab <schwab@linux-m68k.org>
date Sat, 24 Jul 2010 17:21:56 +0200
parents 8cfee7d2955f
children 228a5fa4eda0
line wrap: on
line diff
--- a/src/cmds.c	Sat Jul 24 15:43:48 2010 +0200
+++ b/src/cmds.c	Sat Jul 24 17:21:56 2010 +0200
@@ -45,6 +45,8 @@
 
 extern Lisp_Object Qface;
 extern Lisp_Object Vtranslation_table_for_input;
+
+static int internal_self_insert (int, int);
 
 DEFUN ("forward-point", Fforward_point, Sforward_point, 1, 1, 0,
        doc: /* Return buffer position N characters after (before if N negative) point.  */)
@@ -347,7 +349,7 @@
 
 static Lisp_Object Qexpand_abbrev;
 
-int
+static int
 internal_self_insert (int c, int noautofill)
 {
   int hairy = 0;