diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:31:28 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:31:28 +0000 |
commit | 29a4e67d88be7ea5b8ba6a2164c2dc9771bcd7ab (patch) | |
tree | b0b5281e027e49f576c9bfcff58da0d4e7025fed /lisp/progmodes/cmacexp.el | |
parent | 5673af85e4a427c550b5a85825340250bfa36c9c (diff) | |
download | emacs-29a4e67d88be7ea5b8ba6a2164c2dc9771bcd7ab.tar.gz |
Message format fixes, commit no. 3
Diffstat (limited to 'lisp/progmodes/cmacexp.el')
-rw-r--r-- | lisp/progmodes/cmacexp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cmacexp.el b/lisp/progmodes/cmacexp.el index e2bcf984586..b3051f37b9d 100644 --- a/lisp/progmodes/cmacexp.el +++ b/lisp/progmodes/cmacexp.el @@ -346,13 +346,13 @@ Optional arg DISPLAY non-nil means show messages in the echo area." (format "\n#line %d \"%s\"\n" startlinenum filename))) ;; Call the preprocessor. - (if display (message mymsg)) + (if display (message "%s" mymsg)) (setq exit-status (call-process-region 1 (point-max) shell-file-name t (list t tempname) nil "-c" cppcommand)) - (if display (message (concat mymsg "done"))) + (if display (message "%s" (concat mymsg "done"))) (if (= (buffer-size) 0) ;; Empty output is normal after a fatal error. (insert "\nPreprocessor produced no output\n") |