# HG changeset patch # User Stefan Monnier # Date 1189473337 0 # Node ID bf23b0b54ed3b5564684842248b468add2f66b3f # Parent ccd6d86fd9a670cf7d4db17315410d388dfc34b5 (load_warn_old_style_backquotes): Change message to look better when it appears in the middle of byte-compiler messages. diff -r ccd6d86fd9a6 -r bf23b0b54ed3 src/ChangeLog --- a/src/ChangeLog Tue Sep 11 01:04:00 2007 +0000 +++ b/src/ChangeLog Tue Sep 11 01:15:37 2007 +0000 @@ -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 -r ccd6d86fd9a6 -r bf23b0b54ed3 src/lread.c --- a/src/lread.c Tue Sep 11 01:04:00 2007 +0000 +++ b/src/lread.c Tue Sep 11 01:15:37 2007 +0000 @@ -708,7 +708,7 @@ 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); }