]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fexecute_kbd_macro): Fix error message.
authorRichard M. Stallman <rms@gnu.org>
Thu, 6 Aug 1998 05:36:45 +0000 (05:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 6 Aug 1998 05:36:45 +0000 (05:36 +0000)
(Fend_kbd_macro): Fix error message.

src/macros.c

index af9022209193db0d5650fb182af3bc3ce5b2d6c4..ad429f1f5e6c733cffe495a2b382eb451c12b58c 100644 (file)
@@ -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);