diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/cmds.c b/src/cmds.c index 465fce18a4b..2bea5a6f10c 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -356,9 +356,7 @@ After insertion, the value of `auto-fill-function' is called if the | |||
| 356 | static Lisp_Object Qexpand_abbrev; | 356 | static Lisp_Object Qexpand_abbrev; |
| 357 | 357 | ||
| 358 | int | 358 | int |
| 359 | internal_self_insert (c, noautofill) | 359 | internal_self_insert (int c, int noautofill) |
| 360 | int c; | ||
| 361 | int noautofill; | ||
| 362 | { | 360 | { |
| 363 | int hairy = 0; | 361 | int hairy = 0; |
| 364 | Lisp_Object tem; | 362 | Lisp_Object tem; |
| @@ -546,7 +544,7 @@ internal_self_insert (c, noautofill) | |||
| 546 | /* module initialization */ | 544 | /* module initialization */ |
| 547 | 545 | ||
| 548 | void | 546 | void |
| 549 | syms_of_cmds () | 547 | syms_of_cmds (void) |
| 550 | { | 548 | { |
| 551 | Qkill_backward_chars = intern_c_string ("kill-backward-chars"); | 549 | Qkill_backward_chars = intern_c_string ("kill-backward-chars"); |
| 552 | staticpro (&Qkill_backward_chars); | 550 | staticpro (&Qkill_backward_chars); |
| @@ -587,7 +585,7 @@ More precisely, a char with closeparen syntax is self-inserted. */); | |||
| 587 | } | 585 | } |
| 588 | 586 | ||
| 589 | void | 587 | void |
| 590 | keys_of_cmds () | 588 | keys_of_cmds (void) |
| 591 | { | 589 | { |
| 592 | int n; | 590 | int n; |
| 593 | 591 | ||