# HG changeset patch # User Richard M. Stallman # Date 870235046 0 # Node ID 0b4c1d43cb950619466098d31e5f9142cc4093de # Parent a9e35f5eea9ad2592345c45635bc6767ad5c6f70 Minor cleanup. diff -r a9e35f5eea9a -r 0b4c1d43cb95 src/term.c --- a/src/term.c Wed Jul 30 02:21:19 1997 +0000 +++ b/src/term.c Wed Jul 30 03:57:26 1997 +0000 @@ -822,8 +822,11 @@ /* 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);