1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(insert_glyphs): Pass glyph, not &glyph, to

encode_terminal_code.
This commit is contained in:
Eli Zaretskii 2000-01-02 14:00:03 +00:00
parent b635321e17
commit 816be8b8eb
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
* term.c (insert_glyphs): Pass glyph, not &glyph, to
encode_terminal_code.
2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
* dispnew.c (mode_line_string): Support termcap frames as well.

View File

@ -1150,7 +1150,7 @@ insert_glyphs (start, len)
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 @@ insert_glyphs (start, len)
/* 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);
}