diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:17 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:17 +0000 |
commit | 662d8d8a19f332c78cde9808b47a63f157040046 (patch) | |
tree | a61a292362a461432b2ca261b45e998e8aab11a9 /lisp/forms.el | |
parent | f28f431f7f9117b2b1b78c74124d93a43bbec5a8 (diff) | |
download | emacs-662d8d8a19f332c78cde9808b47a63f157040046.tar.gz |
(forms--help, forms-search-forward, forms-search-backward): Pass proper format string to message.
Diffstat (limited to 'lisp/forms.el')
-rw-r--r-- | lisp/forms.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/forms.el b/lisp/forms.el index 9a8217fb185..c82c822ec30 100644 --- a/lisp/forms.el +++ b/lisp/forms.el @@ -289,10 +289,10 @@ (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility -(defconst forms-version (substring "$Revision: 2.24 $" 11 -2) +(defconst forms-version (substring "$Revision: 2.25 $" 11 -2) "The version number of forms-mode (as string). The complete RCS id is: - $Id: forms.el,v 2.24 1996/01/04 23:38:16 kwzh Exp erik $") + $Id: forms.el,v 2.25 1996/01/14 07:34:30 erik Exp kwzh $") (defvar forms-mode-hooks nil "Hook functions to be run upon entering Forms mode.") @@ -1415,7 +1415,7 @@ Commands: Equivalent keys in read-only mode: (defun forms--help () "Initial help for Forms mode." - (message (substitute-command-keys (concat + (message "%s" (substitute-command-keys (concat "\\[forms-next-record]:next" " \\[forms-prev-record]:prev" " \\[forms-first-record]:first" @@ -1833,7 +1833,7 @@ it is called to fill (some of) the fields with default values." (if (null (re-search-forward regexp nil t)) (progn (goto-char here) - (message (concat "\"" regexp "\" not found.")) + (message "\"%s\" not found." regexp) nil) (setq the-record (forms--get-record)) (setq the-line (1+ (count-lines (point-min) (point)))))) @@ -1865,7 +1865,7 @@ it is called to fill (some of) the fields with default values." (if (null (re-search-backward regexp nil t)) (progn (goto-char here) - (message (concat "\"" regexp "\" not found.")) + (message "\"%s\" not found." regexp) nil) (setq the-record (forms--get-record)) (setq the-line (1+ (count-lines (point-min) (point)))))) |