From: Karl Heuer Date: Thu, 25 Jan 1996 00:57:23 +0000 (+0000) Subject: (simula-electric-keyword): Pass proper format string to message. X-Git-Tag: emacs-19.34~1530 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23161c61c453be29c00958433cbcefeefbf8e40e;p=emacs.git (simula-electric-keyword): Pass proper format string to message. --- diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index 6a3319a5bab..45cb24b331d 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el @@ -987,11 +987,10 @@ If COUNT is negative, move backward instead." (simula-backward-up-level 1) (if (pos-visible-in-window-p) (sit-for 1) - (message - (concat "Matches " + (message "Matches %s" (buffer-substring (point) - (+ (point) (window-width)))))))) + (+ (point) (window-width))))))) (skip-chars-backward " \t\f") (bolp))) (let ((indent (simula-calculate-indent)))