]> git.eshelyaron.com Git - emacs.git/commitdiff
(cpp-parse-error): Fix error format string.
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:11:17 +0000 (23:11 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:11:17 +0000 (23:11 +0000)
lisp/progmodes/cpp.el

index fb040a4480ad4d4ea14f3bba26a2c42b224adb2c..32573b6d0bc4ff3af23a2f742568ae7e25cd6277 100644 (file)
@@ -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."