diff options
| author | Richard M. Stallman | 1998-08-06 05:36:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-06 05:36:45 +0000 |
| commit | d86ad277e5236fd51646bcb2a88626f9c3b89eb7 (patch) | |
| tree | d8bfd42112634a24b46efc7bc9cb6458ee0f5a61 | |
| parent | 72aca5fa28294a8ad967bfeda30843502d7e807b (diff) | |
| download | emacs-d86ad277e5236fd51646bcb2a88626f9c3b89eb7.tar.gz emacs-d86ad277e5236fd51646bcb2a88626f9c3b89eb7.zip | |
(Fexecute_kbd_macro): Fix error message.
(Fend_kbd_macro): Fix error message.
| -rw-r--r-- | src/macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macros.c b/src/macros.c index af902220919..ad429f1f5e6 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -112,7 +112,7 @@ An argument of zero means repeat until error.") | |||
| 112 | Lisp_Object repeat; | 112 | Lisp_Object repeat; |
| 113 | { | 113 | { |
| 114 | if (NILP (current_kboard->defining_kbd_macro)) | 114 | if (NILP (current_kboard->defining_kbd_macro)) |
| 115 | error ("Not defining kbd macro."); | 115 | error ("Not defining kbd macro"); |
| 116 | 116 | ||
| 117 | if (NILP (repeat)) | 117 | if (NILP (repeat)) |
| 118 | XSETFASTINT (repeat, 1); | 118 | XSETFASTINT (repeat, 1); |
| @@ -261,7 +261,7 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.") | |||
| 261 | 261 | ||
| 262 | final = indirect_function (macro); | 262 | final = indirect_function (macro); |
| 263 | if (!STRINGP (final) && !VECTORP (final)) | 263 | if (!STRINGP (final) && !VECTORP (final)) |
| 264 | error ("Keyboard macros must be strings or vectors."); | 264 | error ("Keyboard macros must be strings or vectors"); |
| 265 | 265 | ||
| 266 | XSETFASTINT (tem, executing_macro_index); | 266 | XSETFASTINT (tem, executing_macro_index); |
| 267 | tem = Fcons (Vexecuting_macro, tem); | 267 | tem = Fcons (Vexecuting_macro, tem); |