diff options
| author | Stefan Monnier | 2007-09-11 01:15:37 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-09-11 01:15:37 +0000 |
| commit | 18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e (patch) | |
| tree | 1c89916028bccf48f4571ebae46f645508881f28 /src | |
| parent | b7ea08942c4989c54b24d4d4db7157d89862e61b (diff) | |
| download | emacs-18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e.tar.gz emacs-18a4a65eed0f9f7ee1247fa00c488dba6e6b5a0e.zip | |
(load_warn_old_style_backquotes): Change message to look
better when it appears in the middle of byte-compiler messages.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lread.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6b31cebce49..3a023d95d6d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * lread.c (load_warn_old_style_backquotes): Change message to look | ||
| 4 | better when it appears in the middle of byte-compiler messages. | ||
| 5 | |||
| 1 | 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * s/darwin.h (MULTI_KBOARD): Only define for Carbon. | 8 | * 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) | |||
| 708 | if (!NILP (Vold_style_backquotes)) | 708 | if (!NILP (Vold_style_backquotes)) |
| 709 | { | 709 | { |
| 710 | Lisp_Object args[2]; | 710 | Lisp_Object args[2]; |
| 711 | args[0] = build_string ("!! File %s uses old-style backquotes !!"); | 711 | args[0] = build_string ("Loading `%s': old-style backquotes detected!"); |
| 712 | args[1] = file; | 712 | args[1] = file; |
| 713 | Fmessage (2, args); | 713 | Fmessage (2, args); |
| 714 | } | 714 | } |