aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c8
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
356static Lisp_Object Qexpand_abbrev; 356static Lisp_Object Qexpand_abbrev;
357 357
358int 358int
359internal_self_insert (c, noautofill) 359internal_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
548void 546void
549syms_of_cmds () 547syms_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
589void 587void
590keys_of_cmds () 588keys_of_cmds (void)
591{ 589{
592 int n; 590 int n;
593 591