changeset 78628:29320ef98233

(load_warn_old_style_backquotes): Fix up array size typo.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 23 Aug 2007 16:15:14 +0000
parents e8ce4af3f42d
children 52977b7fd128
files src/ChangeLog src/lread.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Aug 23 15:11:31 2007 +0000
+++ b/src/ChangeLog	Thu Aug 23 16:15:14 2007 +0000
@@ -1,3 +1,7 @@
+2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* lread.c (load_warn_old_style_backquotes): Fix up array size typo.
+
 2007-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* lread.c (Qold_style_backquotes): New var.
--- a/src/lread.c	Thu Aug 23 15:11:31 2007 +0000
+++ b/src/lread.c	Thu Aug 23 16:15:14 2007 +0000
@@ -705,8 +705,8 @@
 {
   if (!NILP (Vold_style_backquotes))
     {
-      Lisp_Object args[1];
-      args[0] = build_string ("!! File %s uses old-style backquotes !!");
+      Lisp_Object args[2];
+b      args[0] = build_string ("!! File %s uses old-style backquotes !!");
       args[1] = file;
       Fmessage (2, args);
     }