comparison src/editfns.c @ 53541:41ceb9298a4e

(Fformat): Fix '&' to '&&'.
author Kenichi Handa <handa@m17n.org>
date Thu, 08 Jan 2004 08:39:54 +0000
parents c7860e5cc982
children 4f06a8a0e7a6
comparison
equal deleted inserted replaced
53540:602e0f5c471d 53541:41ceb9298a4e
3445 else 3445 else
3446 { 3446 {
3447 /* Anything but a string, convert to a string using princ. */ 3447 /* Anything but a string, convert to a string using princ. */
3448 register Lisp_Object tem; 3448 register Lisp_Object tem;
3449 tem = Fprin1_to_string (args[n], Qt); 3449 tem = Fprin1_to_string (args[n], Qt);
3450 if (STRING_MULTIBYTE (tem) & ! multibyte) 3450 if (STRING_MULTIBYTE (tem) && ! multibyte)
3451 { 3451 {
3452 multibyte = 1; 3452 multibyte = 1;
3453 goto retry; 3453 goto retry;
3454 } 3454 }
3455 args[n] = tem; 3455 args[n] = tem;