From 171d7f241b27cf3de032b0af5a6cda66eaa8929e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 30 Jul 1997 03:57:26 +0000 Subject: [PATCH] Minor cleanup. --- src/term.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/term.c b/src/term.c index 1fbc4d87f68..efed87e52ea 100644 --- a/src/term.c +++ b/src/term.c @@ -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); -- 2.39.2