From: Stefan Monnier Date: Thu, 23 Aug 2007 16:15:14 +0000 (+0000) Subject: (load_warn_old_style_backquotes): Fix up array size typo. X-Git-Tag: emacs-pretest-22.1.90~935 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396;p=emacs.git (load_warn_old_style_backquotes): Fix up array size typo. --- diff --git a/src/ChangeLog b/src/ChangeLog index b2d065e13fb..bf4629774e4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 --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) { 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); }