aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/cpp.el
diff options
context:
space:
mode:
authorKarl Heuer1996-01-29 23:11:17 +0000
committerKarl Heuer1996-01-29 23:11:17 +0000
commit8995e09e9b1d553ef5c5752cf79fdacc3a715482 (patch)
tree95a5edbd9c7083d46a75b9adeca622329b34e57e /lisp/progmodes/cpp.el
parentd81c2c3c232915368d9e6b978c0b7b2dde4a6100 (diff)
downloademacs-8995e09e9b1d553ef5c5752cf79fdacc3a715482.tar.gz
emacs-8995e09e9b1d553ef5c5752cf79fdacc3a715482.zip
(cpp-parse-error): Fix error format string.
Diffstat (limited to 'lisp/progmodes/cpp.el')
-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 fb040a4480a..32573b6d0bc 100644
--- a/lisp/progmodes/cpp.el
+++ b/lisp/progmodes/cpp.el
@@ -280,7 +280,7 @@ A prefix arg suppresses display of that buffer."
280 280
281(defun cpp-parse-error (error) 281(defun cpp-parse-error (error)
282 ;; Error message issued by the cpp parser. 282 ;; Error message issued by the cpp parser.
283 (error (concat error " at line %d") (count-lines (point-min) (point)))) 283 (error "%s at line %d" error (count-lines (point-min) (point))))
284 284
285(defun cpp-parse-reset () 285(defun cpp-parse-reset ()
286 "Reset display of cpp conditionals to normal." 286 "Reset display of cpp conditionals to normal."