aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/cmacexp.el
diff options
context:
space:
mode:
authorDeepak Goel <[email protected]>2005-09-18 12:31:28 +0000
committerDeepak Goel <[email protected]>2005-09-18 12:31:28 +0000
commit29a4e67d88be7ea5b8ba6a2164c2dc9771bcd7ab (patch)
treeb0b5281e027e49f576c9bfcff58da0d4e7025fed /lisp/progmodes/cmacexp.el
parent5673af85e4a427c550b5a85825340250bfa36c9c (diff)
Message format fixes, commit no. 3
Diffstat (limited to 'lisp/progmodes/cmacexp.el')
-rw-r--r--lisp/progmodes/cmacexp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cmacexp.el b/lisp/progmodes/cmacexp.el
index e2bcf98458..b3051f37b9 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")