aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-01-29 23:11:17 +0000
committerKarl Heuer <[email protected]>1996-01-29 23:11:17 +0000
commit8995e09e9b1d553ef5c5752cf79fdacc3a715482 (patch)
tree95a5edbd9c7083d46a75b9adeca622329b34e57e /lisp
parentd81c2c3c232915368d9e6b978c0b7b2dde4a6100 (diff)
(cpp-parse-error): Fix error format string.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/cpp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el
index fb040a4480..32573b6d0b 100644
--- a/lisp/progmodes/cpp.el
+++ b/lisp/progmodes/cpp.el
@@ -280,7 +280,7 @@ A prefix arg suppresses display of that buffer."
(defun cpp-parse-error (error)
;; Error message issued by the cpp parser.
- (error (concat error " at line %d") (count-lines (point-min) (point))))
+ (error "%s at line %d" error (count-lines (point-min) (point))))
(defun cpp-parse-reset ()
"Reset display of cpp conditionals to normal."