diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/lread.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b2d065e13fb..bf4629774e4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * lread.c (load_warn_old_style_backquotes): Fix up array size typo. | ||
| 4 | |||
| 1 | 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * lread.c (Qold_style_backquotes): New var. | 7 | * lread.c (Qold_style_backquotes): New var. |
diff --git a/src/lread.c b/src/lread.c index 20eafbcd5ee..be2d3a77cf5 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -705,8 +705,8 @@ load_warn_old_style_backquotes (file) | |||
| 705 | { | 705 | { |
| 706 | if (!NILP (Vold_style_backquotes)) | 706 | if (!NILP (Vold_style_backquotes)) |
| 707 | { | 707 | { |
| 708 | Lisp_Object args[1]; | 708 | Lisp_Object args[2]; |
| 709 | args[0] = build_string ("!! File %s uses old-style backquotes !!"); | 709 | b args[0] = build_string ("!! File %s uses old-style backquotes !!"); |
| 710 | args[1] = file; | 710 | args[1] = file; |
| 711 | Fmessage (2, args); | 711 | Fmessage (2, args); |
| 712 | } | 712 | } |