diff options
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c index 03ce54c8ee4..fdc3fcac281 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -280,8 +280,7 @@ At the end, it runs `post-self-insert-hook'. */) | |||
| 280 | CHECK_NUMBER (n); | 280 | CHECK_NUMBER (n); |
| 281 | 281 | ||
| 282 | if (XFASTINT (n) < 1) | 282 | if (XFASTINT (n) < 1) |
| 283 | error ("Repetition argument is %"pI"d, but must be higher than 0.", | 283 | error ("Nonpositive repetition argument %"pI"d", XFASTINT (n)); |
| 284 | XFASTINT (n)); | ||
| 285 | 284 | ||
| 286 | if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) | 285 | if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) |
| 287 | nonundocount = 0; | 286 | nonundocount = 0; |