changeset 22915:ef9dd93e3077

(Fexecute_kbd_macro): Fix error message. (Fend_kbd_macro): Fix error message.
author Richard M. Stallman <rms@gnu.org>
date Thu, 06 Aug 1998 05:36:45 +0000
parents 4d4e775cf6f7
children 596fa4fbae13
files src/macros.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/macros.c	Wed Aug 05 22:32:02 1998 +0000
+++ b/src/macros.c	Thu Aug 06 05:36:45 1998 +0000
@@ -112,7 +112,7 @@
      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 @@
 
   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);