# HG changeset patch # User Karl Heuer # Date 822957077 0 # Node ID 2b2e0cef30d5db0e9b9cb024c653b2d01557d426 # Parent 3ec65c6789eb2e66c182a30bc19b91b69a11f1e0 (cpp-parse-error): Fix error format string. diff -r 3ec65c6789eb -r 2b2e0cef30d5 lisp/progmodes/cpp.el --- 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."