aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-31 02:45:18 +0000
committerRichard M. Stallman1997-05-31 02:45:18 +0000
commitf3c6bfa2106ec7c1d363e321aad4201b29d6afa5 (patch)
tree2fd8f3858d124248305a12d9cad3c1edfb7bc0ac /src/term.c
parent8ff102bda572ce9058b4a4bcf2253bd72a68db04 (diff)
downloademacs-f3c6bfa2106ec7c1d363e321aad4201b29d6afa5.tar.gz
emacs-f3c6bfa2106ec7c1d363e321aad4201b29d6afa5.zip
(insert_glyphs): Use &, not &&.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
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)
956 g = *start++; 956 g = *start++;
957 /* We must open sufficient space for a character which 957 /* We must open sufficient space for a character which
958 occupies more than one column. */ 958 occupies more than one column. */
959 while (*start && GLYPH_MASK_PADDING) 959 while (*start & GLYPH_MASK_PADDING)
960 { 960 {
961 OUTPUT1_IF (TS_ins_char); 961 OUTPUT1_IF (TS_ins_char);
962 start++, len--; 962 start++, len--;