aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-08-23 16:20:34 +0000
committerStefan Monnier2007-08-23 16:20:34 +0000
commitc30da265105157b391bca96d15a593e020efafa5 (patch)
tree3fa799d24b8c253b66e7cb583dd9c1b61a240add
parentb636b4c1c5cd852cfffe6a1140ecc8ad35ee5396 (diff)
downloademacs-c30da265105157b391bca96d15a593e020efafa5.tar.gz
emacs-c30da265105157b391bca96d15a593e020efafa5.zip
(load_warn_old_style_backquotes): Fix weird typo.
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index be2d3a77cf5..858a936e1e3 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -706,7 +706,7 @@ load_warn_old_style_backquotes (file)
706 if (!NILP (Vold_style_backquotes)) 706 if (!NILP (Vold_style_backquotes))
707 { 707 {
708 Lisp_Object args[2]; 708 Lisp_Object args[2];
709b args[0] = build_string ("!! File %s uses old-style backquotes !!"); 709 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 }