changeset 14417:2b2e0cef30d5

(cpp-parse-error): Fix error format string.
author Karl Heuer <kwzh@gnu.org>
date Mon, 29 Jan 1996 23:11:17 +0000
parents 3ec65c6789eb
children 7f58ca0014ef
files lisp/progmodes/cpp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/cpp.el	Mon Jan 29 23:10:03 1996 +0000
+++ b/lisp/progmodes/cpp.el	Mon Jan 29 23:11:17 1996 +0000
@@ -280,7 +280,7 @@
 
 (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."