aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/forms.el
diff options
context:
space:
mode:
authorKarl Heuer1996-01-25 00:54:17 +0000
committerKarl Heuer1996-01-25 00:54:17 +0000
commit5edb2df7d3f0bbb95dc694bcd313238432541cb7 (patch)
treeefeac4df1e3f8c5b26407aff0f6bc4c834ef2bec /lisp/forms.el
parentd8fb88d5354e728cd0f4830d4b44fdf032790561 (diff)
downloademacs-5edb2df7d3f0bbb95dc694bcd313238432541cb7.tar.gz
emacs-5edb2df7d3f0bbb95dc694bcd313238432541cb7.zip
(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.el10
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 @@
289(provide 'forms) ;;; official 289(provide 'forms) ;;; official
290(provide 'forms-mode) ;;; for compatibility 290(provide 'forms-mode) ;;; for compatibility
291 291
292(defconst forms-version (substring "$Revision: 2.24 $" 11 -2) 292(defconst forms-version (substring "$Revision: 2.25 $" 11 -2)
293 "The version number of forms-mode (as string). The complete RCS id is: 293 "The version number of forms-mode (as string). The complete RCS id is:
294 294
295 $Id: forms.el,v 2.24 1996/01/04 23:38:16 kwzh Exp erik $") 295 $Id: forms.el,v 2.25 1996/01/14 07:34:30 erik Exp kwzh $")
296 296
297(defvar forms-mode-hooks nil 297(defvar forms-mode-hooks nil
298 "Hook functions to be run upon entering Forms mode.") 298 "Hook functions to be run upon entering Forms mode.")
@@ -1415,7 +1415,7 @@ Commands: Equivalent keys in read-only mode:
1415 1415
1416(defun forms--help () 1416(defun forms--help ()
1417 "Initial help for Forms mode." 1417 "Initial help for Forms mode."
1418 (message (substitute-command-keys (concat 1418 (message "%s" (substitute-command-keys (concat
1419 "\\[forms-next-record]:next" 1419 "\\[forms-next-record]:next"
1420 " \\[forms-prev-record]:prev" 1420 " \\[forms-prev-record]:prev"
1421 " \\[forms-first-record]:first" 1421 " \\[forms-first-record]:first"
@@ -1833,7 +1833,7 @@ it is called to fill (some of) the fields with default values."
1833 (if (null (re-search-forward regexp nil t)) 1833 (if (null (re-search-forward regexp nil t))
1834 (progn 1834 (progn
1835 (goto-char here) 1835 (goto-char here)
1836 (message (concat "\"" regexp "\" not found.")) 1836 (message "\"%s\" not found." regexp)
1837 nil) 1837 nil)
1838 (setq the-record (forms--get-record)) 1838 (setq the-record (forms--get-record))
1839 (setq the-line (1+ (count-lines (point-min) (point)))))) 1839 (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."
1865 (if (null (re-search-backward regexp nil t)) 1865 (if (null (re-search-backward regexp nil t))
1866 (progn 1866 (progn
1867 (goto-char here) 1867 (goto-char here)
1868 (message (concat "\"" regexp "\" not found.")) 1868 (message "\"%s\" not found." regexp)
1869 nil) 1869 nil)
1870 (setq the-record (forms--get-record)) 1870 (setq the-record (forms--get-record))
1871 (setq the-line (1+ (count-lines (point-min) (point)))))) 1871 (setq the-line (1+ (count-lines (point-min) (point))))))