From b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 23 Aug 2007 16:15:14 +0000 Subject: [PATCH] (load_warn_old_style_backquotes): Fix up array size typo. --- src/ChangeLog | 4 ++++ src/lread.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index b2d065e13f..bf4629774e 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 20eafbcd5e..be2d3a77cf 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); } -- 2.20.1