]> code.delx.au - gnu-emacs/commitdiff
(Fformat): Fix '&' to '&&'.
authorKenichi Handa <handa@m17n.org>
Thu, 8 Jan 2004 08:40:12 +0000 (08:40 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 8 Jan 2004 08:40:12 +0000 (08:40 +0000)
src/ChangeLog
src/editfns.c

index f42395977c9b6514e87b55dd165610d44d2d4538..44d922a254e5f896463c0ce2bc170061c0324f6d 100644 (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
index 0b71d10515596175e70e5835ba96781954687ff7..a636c35a4643565114a8c9e20c55374bd05000f4 100644 (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;