From: Karl Heuer Date: Thu, 25 Jan 1996 00:54:17 +0000 (+0000) Subject: (forms--help, forms-search-forward, forms-search-backward): Pass proper format string... X-Git-Tag: emacs-19.34~1545 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5edb2df7d3f0bbb95dc694bcd313238432541cb7;p=emacs.git (forms--help, forms-search-forward, forms-search-backward): Pass proper format string to message. --- 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))))))