1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

Correct a typo in a comment.

This commit is contained in:
Eli Zaretskii 2000-05-28 13:27:33 +00:00
parent add4489008
commit cf872af50e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
* term.c (produce_glyphs): Treat characters from the eight-bit-*
charsets as unibyte, with 1-column screen width. Sent by Kenichi
Handa.
2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
* charset.c (syms_of_charset): Set width of character sets * charset.c (syms_of_charset): Set width of character sets

View File

@ -1858,7 +1858,7 @@ produce_glyphs (it)
} }
else if (SINGLE_BYTE_CHAR_P (it->c)) else if (SINGLE_BYTE_CHAR_P (it->c))
{ {
/* Comming here means that it->c is from display table, thus we /* Coming here means that it->c is from display table, thus we
must send the code as is to the terminal. Although there's must send the code as is to the terminal. Although there's
no way to know how many columns it occupies on a screen, it no way to know how many columns it occupies on a screen, it
is a good assumption that a single byte code has 1-column is a good assumption that a single byte code has 1-column