# HG changeset patch # User Stefan Monnier # Date 1187885714 0 # Node ID 29320ef98233d1eeb59307bc0085e67357c53153 # Parent e8ce4af3f42df291163d3af67ef0c0202c76a4db (load_warn_old_style_backquotes): Fix up array size typo. diff -r e8ce4af3f42d -r 29320ef98233 src/ChangeLog --- 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 + + * lread.c (load_warn_old_style_backquotes): Fix up array size typo. + 2007-08-22 Stefan Monnier * lread.c (Qold_style_backquotes): New var. diff -r e8ce4af3f42d -r 29320ef98233 src/lread.c --- 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); }