From: Richard M. Stallman Date: Wed, 30 Jul 1997 03:57:26 +0000 (+0000) Subject: Minor cleanup. X-Git-Tag: emacs-20.1~911 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=171d7f241b27cf3de032b0af5a6cda66eaa8929e;p=emacs.git Minor cleanup. --- 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);