diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/cmds.c | |
parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/cmds.c')
-rw-r--r-- | src/cmds.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmds.c b/src/cmds.c index 917c3d2c8f7..f91f91b0bc1 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ #include "syntax.h" #include "window.h" #include "keyboard.h" +#include "dispextern.h" Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; @@ -326,6 +327,7 @@ Whichever character you type to run this command is inserted.") return 0. A value of 1 indicates this *might* not have been simple. A value of 2 means this did things that call for an undo boundary. */ +int internal_self_insert (c, noautofill) int c; int noautofill; @@ -503,6 +505,7 @@ internal_self_insert (c, noautofill) /* module initialization */ +void syms_of_cmds () { Qkill_backward_chars = intern ("kill-backward-chars"); @@ -542,6 +545,7 @@ More precisely, a char with closeparen syntax is self-inserted."); defsubr (&Sself_insert_command); } +void keys_of_cmds () { int n; |