aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2000-05-28 13:27:33 +0000
committerEli Zaretskii2000-05-28 13:27:33 +0000
commitcf872af50e6a86bff18f772759f7a6b09089d19e (patch)
treeaa9a3d9338e9f67e3c3611bafd5265340af48a44 /src
parentadd448900881f981e2b803e0642770a70b9fe85a (diff)
downloademacs-cf872af50e6a86bff18f772759f7a6b09089d19e.tar.gz
emacs-cf872af50e6a86bff18f772759f7a6b09089d19e.zip
Correct a typo in a comment.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/term.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6d62d1c5935..30556a76790 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12000-05-28 Eli Zaretskii <eliz@is.elta.co.il> 12000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * term.c (produce_glyphs): Treat characters from the eight-bit-*
4 charsets as unibyte, with 1-column screen width. Sent by Kenichi
5 Handa.
6
72000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
8
3 * charset.c (syms_of_charset): Set width of character sets 9 * charset.c (syms_of_charset): Set width of character sets
4 eight-bit-control and eight-bit-graphic to 1 column. 10 eight-bit-control and eight-bit-graphic to 1 column.
5 11
diff --git a/src/term.c b/src/term.c
index df3ea60e997..672eee22c6c 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1858,7 +1858,7 @@ produce_glyphs (it)
1858 } 1858 }
1859 else if (SINGLE_BYTE_CHAR_P (it->c)) 1859 else if (SINGLE_BYTE_CHAR_P (it->c))
1860 { 1860 {
1861 /* Comming here means that it->c is from display table, thus we 1861 /* Coming here means that it->c is from display table, thus we
1862 must send the code as is to the terminal. Although there's 1862 must send the code as is to the terminal. Although there's
1863 no way to know how many columns it occupies on a screen, it 1863 no way to know how many columns it occupies on a screen, it
1864 is a good assumption that a single byte code has 1-column 1864 is a good assumption that a single byte code has 1-column