]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor cleanup.
authorRichard M. Stallman <rms@gnu.org>
Wed, 30 Jul 1997 03:57:26 +0000 (03:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 30 Jul 1997 03:57:26 +0000 (03:57 +0000)
src/term.c

index 1fbc4d87f687e8b966adfe9283af59bfdcfa68b3..efed87e52eaab8d2e6df56816b7fe2eee9abc57a 100644 (file)
@@ -822,8 +822,11 @@ encode_terminal_code (src, dst, src_len, dst_len, consumed)
            /* We set the multi-byte form of C at BUF.  */
            len = CHAR_STRING (c, workbuf, buf);
          else
-           /* We have a string in Vglyph_table.  */
-           len = GLYPH_LENGTH (tbase, g), buf = GLYPH_STRING (tbase, g);
+           {
+             /* We have a string in Vglyph_table.  */
+             len = GLYPH_LENGTH (tbase, g);
+             buf = GLYPH_STRING (tbase, g);
+           }
          
          produced = encode_coding (&terminal_coding, buf, dst,
                                     len, dst_end - dst, &processed);