aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
authorKenichi Handa2010-07-26 13:29:08 +0900
committerKenichi Handa2010-07-26 13:29:08 +0900
commit50efd41b43c9b1b540c49c53d4e7824468ec7879 (patch)
tree4a3be8d0322c537816f47a0c6450fc13495edf35 /src/cmds.c
parentdfe3c90fa5974e200483297e11bb889d0589b8f5 (diff)
parent7d383292d10b876efec43e77fd51c2665e912688 (diff)
downloademacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.tar.gz
emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.zip
merge trunk
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 81f975a9885..2b686a44d87 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -45,6 +45,8 @@ Lisp_Object Vself_insert_face_command;
45 45
46extern Lisp_Object Qface; 46extern Lisp_Object Qface;
47extern Lisp_Object Vtranslation_table_for_input; 47extern Lisp_Object Vtranslation_table_for_input;
48
49static int internal_self_insert (int, int);
48 50
49DEFUN ("forward-point", Fforward_point, Sforward_point, 1, 1, 0, 51DEFUN ("forward-point", Fforward_point, Sforward_point, 1, 1, 0,
50 doc: /* Return buffer position N characters after (before if N negative) point. */) 52 doc: /* Return buffer position N characters after (before if N negative) point. */)
@@ -347,7 +349,7 @@ After insertion, the value of `auto-fill-function' is called if the
347 349
348static Lisp_Object Qexpand_abbrev; 350static Lisp_Object Qexpand_abbrev;
349 351
350int 352static int
351internal_self_insert (int c, int noautofill) 353internal_self_insert (int c, int noautofill)
352{ 354{
353 int hairy = 0; 355 int hairy = 0;