diff src/term.c @ 27085:59913a531d4e

(insert_glyphs): Pass glyph, not &glyph, to encode_terminal_code.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 02 Jan 2000 13:58:41 +0000
parents 5d0057e6170e
children 8de2d17323c2
line wrap: on
line diff
--- a/src/term.c	Sun Jan 02 12:09:58 2000 +0000
+++ b/src/term.c	Sun Jan 02 13:58:41 2000 +0000
@@ -1150,7 +1150,7 @@
       else
 	{
 	  turn_on_face (f, start->face_id);
-	  glyph= start;
+	  glyph = start;
 	  ++start;
 	  /* We must open sufficient space for a character which
 	     occupies more than one column.  */
@@ -1166,7 +1166,7 @@
 
 	  /* We use shared conversion buffer of the current size (1024
 	     bytes at least).  It is surely sufficient for just one glyph.  */
-	  produced = encode_terminal_code (&glyph, conversion_buffer, 1,
+	  produced = encode_terminal_code (glyph, conversion_buffer, 1,
 					   conversion_buffer_size, &consumed);
 	}