aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorStefan Monnier2007-08-23 16:15:14 +0000
committerStefan Monnier2007-08-23 16:15:14 +0000
commitb636b4c1c5cd852cfffe6a1140ecc8ad35ee5396 (patch)
tree4df30b1f8e630bbfc882d180444297e5863911a5 /src/lread.c
parent5ebfbcdc3f422edb3a6dc2dc347df276b134661b (diff)
downloademacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.tar.gz
emacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.zip
(load_warn_old_style_backquotes): Fix up array size typo.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
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)
705{ 705{
706 if (!NILP (Vold_style_backquotes)) 706 if (!NILP (Vold_style_backquotes))
707 { 707 {
708 Lisp_Object args[1]; 708 Lisp_Object args[2];
709 args[0] = build_string ("!! File %s uses old-style backquotes !!"); 709b args[0] = build_string ("!! File %s uses old-style backquotes !!");
710 args[1] = file; 710 args[1] = file;
711 Fmessage (2, args); 711 Fmessage (2, args);
712 } 712 }