diff src/lread.c @ 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 a16793949fe1
children 52977b7fd128
line wrap: on
line diff
--- 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);
     }