(Fformat): Fix '&' to '&&'.

This commit is contained in:
Kenichi Handa 2004-01-08 08:40:12 +00:00
parent c9ec040a0d
commit 3a9f36e634
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-01-08 Kenichi Handa <handa@m17n.org>
* editfns.c (Fformat): Fix '&' to '&&'.
2004-01-08 Andreas Schwab <schwab@suse.de>
* print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask

View file

@ -3447,7 +3447,7 @@ usage: (format STRING &rest OBJECTS) */)
/* Anything but a string, convert to a string using princ. */
register Lisp_Object tem;
tem = Fprin1_to_string (args[n], Qt);
if (STRING_MULTIBYTE (tem) & ! multibyte)
if (STRING_MULTIBYTE (tem) && ! multibyte)
{
multibyte = 1;
goto retry;