aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c4
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
31Lisp_Object Qkill_forward_chars, Qkill_backward_chars, Vblink_paren_function; 32Lisp_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
330int
329internal_self_insert (c, noautofill) 331internal_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
508void
506syms_of_cmds () 509syms_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
548void
545keys_of_cmds () 549keys_of_cmds ()
546{ 550{
547 int n; 551 int n;