]> code.delx.au - gnu-emacs/commitdiff
(insert_glyphs): Use &, not &&.
authorRichard M. Stallman <rms@gnu.org>
Sat, 31 May 1997 02:45:18 +0000 (02:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 31 May 1997 02:45:18 +0000 (02:45 +0000)
src/term.c

index 322ac9d61747736125288906a0406e05250746b8..1fbc4d87f687e8b966adfe9283af59bfdcfa68b3 100644 (file)
@@ -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--;