From: Richard M. Stallman Date: Thu, 6 Aug 1998 05:36:45 +0000 (+0000) Subject: (Fexecute_kbd_macro): Fix error message. X-Git-Tag: emacs-20.3~164 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d86ad277e5236fd51646bcb2a88626f9c3b89eb7;p=emacs.git (Fexecute_kbd_macro): Fix error message. (Fend_kbd_macro): Fix error message. --- 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.") Lisp_Object repeat; { if (NILP (current_kboard->defining_kbd_macro)) - error ("Not defining kbd macro."); + error ("Not defining kbd macro"); if (NILP (repeat)) XSETFASTINT (repeat, 1); @@ -261,7 +261,7 @@ COUNT is a repeat count, or nil for once, or 0 for infinite loop.") final = indirect_function (macro); if (!STRINGP (final) && !VECTORP (final)) - error ("Keyboard macros must be strings or vectors."); + error ("Keyboard macros must be strings or vectors"); XSETFASTINT (tem, executing_macro_index); tem = Fcons (Vexecuting_macro, tem);