diff options
| author | Stefan Monnier | 2007-08-23 16:15:14 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-08-23 16:15:14 +0000 |
| commit | b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396 (patch) | |
| tree | 4df30b1f8e630bbfc882d180444297e5863911a5 /src | |
| parent | 5ebfbcdc3f422edb3a6dc2dc347df276b134661b (diff) | |
| download | emacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.tar.gz emacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.zip | |
(load_warn_old_style_backquotes): Fix up array size typo.
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 | } |