Make internal_self_insert static

* cmds.c (internal_self_insert): Make static.
* lisp.h (internal_self_insert): Remove declaration.
This commit is contained in:
Andreas Schwab 2010-07-24 17:21:56 +02:00
parent 2294431987
commit c8197983c5
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
* cmds.c (internal_self_insert): Make static.
* lisp.h (internal_self_insert): Remove declaration.
2010-07-23 Juanma Barranquero <lekktu@gmail.com>
* alloc.c (free_float):

View file

@ -45,6 +45,8 @@ Lisp_Object Vself_insert_face_command;
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 @@ After insertion, the value of `auto-fill-function' is called if the
static Lisp_Object Qexpand_abbrev;
int
static int
internal_self_insert (int c, int noautofill)
{
int hairy = 0;

View file

@ -2393,7 +2393,6 @@ extern void swap_in_global_binding (struct Lisp_Symbol *);
EXFUN (Fend_of_line, 1);
EXFUN (Fforward_char, 1);
EXFUN (Fforward_line, 1);
extern int internal_self_insert (int, int);
extern void syms_of_cmds (void);
extern void keys_of_cmds (void);