From: Stefan Monnier Date: Tue, 11 Sep 2007 01:15:37 +0000 (+0000) Subject: (load_warn_old_style_backquotes): Change message to look X-Git-Tag: emacs-pretest-23.0.90~10972 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e;p=emacs.git (load_warn_old_style_backquotes): Change message to look better when it appears in the middle of byte-compiler messages. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6b31cebce49..3a023d95d6d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-09-11 Stefan Monnier + + * lread.c (load_warn_old_style_backquotes): Change message to look + better when it appears in the middle of byte-compiler messages. + 2007-09-10 Dan Nicolaescu * s/darwin.h (MULTI_KBOARD): Only define for Carbon. diff --git a/src/lread.c b/src/lread.c index e8ff0ee63df..a4bb0fa5899 100644 --- a/src/lread.c +++ b/src/lread.c @@ -708,7 +708,7 @@ load_warn_old_style_backquotes (file) if (!NILP (Vold_style_backquotes)) { Lisp_Object args[2]; - args[0] = build_string ("!! File %s uses old-style backquotes !!"); + args[0] = build_string ("Loading `%s': old-style backquotes detected!"); args[1] = file; Fmessage (2, args); }