From: Richard M. Stallman Date: Sat, 31 May 1997 02:45:18 +0000 (+0000) Subject: (insert_glyphs): Use &, not &&. X-Git-Tag: emacs-20.1~1888 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f3c6bfa2106ec7c1d363e321aad4201b29d6afa5;p=emacs.git (insert_glyphs): Use &, not &&. --- diff --git a/src/term.c b/src/term.c index 322ac9d6174..1fbc4d87f68 100644 --- a/src/term.c +++ b/src/term.c @@ -956,7 +956,7 @@ insert_glyphs (start, len) g = *start++; /* We must open sufficient space for a character which occupies more than one column. */ - while (*start && GLYPH_MASK_PADDING) + while (*start & GLYPH_MASK_PADDING) { OUTPUT1_IF (TS_ins_char); start++, len--;