From: Karl Heuer Date: Mon, 29 Jan 1996 23:11:17 +0000 (+0000) Subject: (cpp-parse-error): Fix error format string. X-Git-Tag: emacs-19.34~1443 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8995e09e9b1d553ef5c5752cf79fdacc3a715482;p=emacs.git (cpp-parse-error): Fix error format string. --- 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." (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."