diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-11 01:15:37 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-11 01:15:37 +0000 |
commit | 18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e (patch) | |
tree | 1c89916028bccf48f4571ebae46f645508881f28 /src/lread.c | |
parent | b7ea08942c4989c54b24d4d4db7157d89862e61b (diff) | |
download | emacs-18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e.tar.gz |
(load_warn_old_style_backquotes): Change message to look
better when it appears in the middle of byte-compiler messages.
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |