aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parent5ebfbcdc3f422edb3a6dc2dc347df276b134661b (diff)
downloademacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.tar.gz
emacs-b636b4c1c5cd852cfffe6a1140ecc8ad35ee5396.zip
(load_warn_old_style_backquotes): Fix up array size typo.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lread.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b2d065e13fb..bf4629774e4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
4
12007-08-22 Stefan Monnier <monnier@iro.umontreal.ca> 52007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * lread.c (Qold_style_backquotes): New var. 7 * 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)
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 }