diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-07-24 17:21:56 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2010-07-24 17:21:56 +0200 |
commit | c8197983c5311abb5b75acf1d9a81369720d28f8 (patch) | |
tree | 6bcc0a814a644cd34813ab9f232b2704b87d353c /src/cmds.c | |
parent | 2294431987b96681c129d0865053ed1f73e533ba (diff) | |
download | emacs-c8197983c5311abb5b75acf1d9a81369720d28f8.tar.gz |
Make internal_self_insert static
* cmds.c (internal_self_insert): Make static.
* lisp.h (internal_self_insert): Remove declaration.
Diffstat (limited to 'src/cmds.c')
-rw-r--r-- | src/cmds.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index 81f975a9885..2b686a44d87 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -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; |