diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/cmds.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
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. */ | |||
| 27 | #include "syntax.h" | 27 | #include "syntax.h" |
| 28 | #include "window.h" | 28 | #include "window.h" |
| 29 | #include "keyboard.h" | 29 | #include "keyboard.h" |
| 30 | #include "dispextern.h" | ||
| 30 | 31 | ||
| 31 | Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; | 32 | Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; |
| 32 | 33 | ||
| @@ -326,6 +327,7 @@ Whichever character you type to run this command is inserted.") | |||
| 326 | return 0. A value of 1 indicates this *might* not have been simple. | 327 | return 0. A value of 1 indicates this *might* not have been simple. |
| 327 | A value of 2 means this did things that call for an undo boundary. */ | 328 | A value of 2 means this did things that call for an undo boundary. */ |
| 328 | 329 | ||
| 330 | int | ||
| 329 | internal_self_insert (c, noautofill) | 331 | internal_self_insert (c, noautofill) |
| 330 | int c; | 332 | int c; |
| 331 | int noautofill; | 333 | int noautofill; |
| @@ -503,6 +505,7 @@ internal_self_insert (c, noautofill) | |||
| 503 | 505 | ||
| 504 | /* module initialization */ | 506 | /* module initialization */ |
| 505 | 507 | ||
| 508 | void | ||
| 506 | syms_of_cmds () | 509 | syms_of_cmds () |
| 507 | { | 510 | { |
| 508 | Qkill_backward_chars = intern ("kill-backward-chars"); | 511 | Qkill_backward_chars = intern ("kill-backward-chars"); |
| @@ -542,6 +545,7 @@ More precisely, a char with closeparen syntax is self-inserted."); | |||
| 542 | defsubr (&Sself_insert_command); | 545 | defsubr (&Sself_insert_command); |
| 543 | } | 546 | } |
| 544 | 547 | ||
| 548 | void | ||
| 545 | keys_of_cmds () | 549 | keys_of_cmds () |
| 546 | { | 550 | { |
| 547 | int n; | 551 | int n; |