Mercurial > emacs
diff src/term.c @ 18058:6dde3604dce4
(insert_glyphs): Use &, not &&.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 31 May 1997 02:45:18 +0000 |
| parents | dd1ead861e95 |
| children | 0b4c1d43cb95 |
line wrap: on
line diff
--- a/src/term.c Sat May 31 02:03:43 1997 +0000 +++ b/src/term.c Sat May 31 02:45:18 1997 +0000 @@ -956,7 +956,7 @@ 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--;
