Mercurial > emacs
diff lisp/progmodes/cpp.el @ 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 | 83f275dcd93a |
| children | 58b38425b463 |
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."
