Make internal_self_insert static
* cmds.c (internal_self_insert): Make static. * lisp.h (internal_self_insert): Remove declaration.
This commit is contained in:
parent
2294431987
commit
c8197983c5
3 changed files with 8 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue