Mercurial > emacs
comparison src/lread.c @ 84465:bf23b0b54ed3
(load_warn_old_style_backquotes): Change message to look
better when it appears in the middle of byte-compiler messages.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 11 Sep 2007 01:15:37 +0000 |
parents | 27d11c1d4e46 |
children | 2c723350c8ec |
comparison
equal
deleted
inserted
replaced
84464:ccd6d86fd9a6 | 84465:bf23b0b54ed3 |
---|---|
706 Lisp_Object file; | 706 Lisp_Object file; |
707 { | 707 { |
708 if (!NILP (Vold_style_backquotes)) | 708 if (!NILP (Vold_style_backquotes)) |
709 { | 709 { |
710 Lisp_Object args[2]; | 710 Lisp_Object args[2]; |
711 args[0] = build_string ("!! File %s uses old-style backquotes !!"); | 711 args[0] = build_string ("Loading `%s': old-style backquotes detected!"); |
712 args[1] = file; | 712 args[1] = file; |
713 Fmessage (2, args); | 713 Fmessage (2, args); |
714 } | 714 } |
715 return Qnil; | 715 return Qnil; |
716 } | 716 } |