diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmds.c b/src/cmds.c index 167ebb74302..650b4628c32 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -233,7 +233,7 @@ because it respects values of `delete-active-region' and `overwrite-mode'. */) | |||
| 233 | CHECK_NUMBER (n); | 233 | CHECK_NUMBER (n); |
| 234 | 234 | ||
| 235 | if (eabs (XINT (n)) < 2) | 235 | if (eabs (XINT (n)) < 2) |
| 236 | call0 (Qundo_auto__amalgamate); | 236 | call0 (Qundo_auto_amalgamate); |
| 237 | 237 | ||
| 238 | pos = PT + XINT (n); | 238 | pos = PT + XINT (n); |
| 239 | if (NILP (killflag)) | 239 | if (NILP (killflag)) |
| @@ -279,7 +279,7 @@ At the end, it runs `post-self-insert-hook'. */) | |||
| 279 | error ("Negative repetition argument %"pI"d", XINT (n)); | 279 | error ("Negative repetition argument %"pI"d", XINT (n)); |
| 280 | 280 | ||
| 281 | if (XFASTINT (n) < 2) | 281 | if (XFASTINT (n) < 2) |
| 282 | call0 (Qundo_auto__amalgamate); | 282 | call0 (Qundo_auto_amalgamate); |
| 283 | 283 | ||
| 284 | /* Barf if the key that invoked this was not a character. */ | 284 | /* Barf if the key that invoked this was not a character. */ |
| 285 | if (!CHARACTERP (last_command_event)) | 285 | if (!CHARACTERP (last_command_event)) |
| @@ -494,7 +494,7 @@ internal_self_insert (int c, EMACS_INT n) | |||
| 494 | void | 494 | void |
| 495 | syms_of_cmds (void) | 495 | syms_of_cmds (void) |
| 496 | { | 496 | { |
| 497 | DEFSYM (Qundo_auto__amalgamate, "undo-auto--amalgamate"); | 497 | DEFSYM (Qundo_auto_amalgamate, "undo-auto-amalgamate"); |
| 498 | DEFSYM (Qundo_auto__this_command_amalgamating, | 498 | DEFSYM (Qundo_auto__this_command_amalgamating, |
| 499 | "undo-auto--this-command-amalgamating"); | 499 | "undo-auto--this-command-amalgamating"); |
| 500 | 500 | ||