diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 16:15:35 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 16:15:35 +0000 |
commit | 5553563924453df2e3c5bf011bf5b7527172b2f6 (patch) | |
tree | e879bd365f5e59410cdd640d19d140b17a8029c3 /lisp/macros.el | |
parent | 401aa4797329c34b3691872337b9be2c26e4e020 (diff) | |
download | emacs-5553563924453df2e3c5bf011bf5b7527172b2f6.tar.gz |
Some fixes to follow coding conventions in files maintained by FSF.
Diffstat (limited to 'lisp/macros.el')
-rw-r--r-- | lisp/macros.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index 354ab82a467..0857dd3c2db 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -1,4 +1,4 @@ -;;; macros.el --- non-primitive commands for keyboard macros. +;;; macros.el --- non-primitive commands for keyboard macros ;; Copyright (C) 1985, 86, 87, 92, 94, 95 Free Software Foundation, Inc. @@ -43,7 +43,7 @@ Such a \"function\" cannot be called from Lisp, but it is a valid editor command (and (fboundp symbol) (not (stringp (symbol-function symbol))) (not (vectorp (symbol-function symbol))) - (error "Function %s is already defined and not a keyboard macro." + (error "Function %s is already defined and not a keyboard macro" symbol)) (if (string-equal symbol "") (error "No command name given")) @@ -281,7 +281,7 @@ and then select the region of un-tablified names and use (or macro (progn (if (null last-kbd-macro) - (error "No keyboard macro has been defined.")) + (error "No keyboard macro has been defined")) (setq macro last-kbd-macro))) (save-excursion (let ((end-marker (progn |