changeset 19035:0b4c1d43cb95

Minor cleanup.
author Richard M. Stallman <rms@gnu.org>
date Wed, 30 Jul 1997 03:57:26 +0000
parents a9e35f5eea9a
children 6ed970c33b7d
files src/term.c
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);