diff options
| author | Kenichi Handa | 2010-07-26 13:29:08 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-07-26 13:29:08 +0900 |
| commit | 50efd41b43c9b1b540c49c53d4e7824468ec7879 (patch) | |
| tree | 4a3be8d0322c537816f47a0c6450fc13495edf35 /src/cmds.c | |
| parent | dfe3c90fa5974e200483297e11bb889d0589b8f5 (diff) | |
| parent | 7d383292d10b876efec43e77fd51c2665e912688 (diff) | |
| download | emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.tar.gz emacs-50efd41b43c9b1b540c49c53d4e7824468ec7879.zip | |
merge trunk
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 4 |
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 | ||
| 46 | extern Lisp_Object Qface; | 46 | extern Lisp_Object Qface; |
| 47 | extern Lisp_Object Vtranslation_table_for_input; | 47 | extern Lisp_Object Vtranslation_table_for_input; |
| 48 | |||
| 49 | static int internal_self_insert (int, int); | ||
| 48 | 50 | ||
| 49 | DEFUN ("forward-point", Fforward_point, Sforward_point, 1, 1, 0, | 51 | DEFUN ("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 | ||
| 348 | static Lisp_Object Qexpand_abbrev; | 350 | static Lisp_Object Qexpand_abbrev; |
| 349 | 351 | ||
| 350 | int | 352 | static int |
| 351 | internal_self_insert (int c, int noautofill) | 353 | internal_self_insert (int c, int noautofill) |
| 352 | { | 354 | { |
| 353 | int hairy = 0; | 355 | int hairy = 0; |