comparison src/lread.c @ 78628:29320ef98233

(load_warn_old_style_backquotes): Fix up array size typo.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 23 Aug 2007 16:15:14 +0000
parents a16793949fe1
children 52977b7fd128
comparison
equal deleted inserted replaced
78627:e8ce4af3f42d 78628:29320ef98233
703 load_warn_old_style_backquotes (file) 703 load_warn_old_style_backquotes (file)
704 Lisp_Object file; 704 Lisp_Object 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 !!"); 709 b 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 }
713 return Qnil; 713 return Qnil;
714 } 714 }