aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-05-25 23:30:45 +0000
committerDave Love2002-05-25 23:30:45 +0000
commit173f18ce3c0a59ffbd3b552ecb18d0b84d3a5bc5 (patch)
treeafc06d3e78063a40a77f60b62c51490ead9e2a08
parent8ddf5e57232fd76add711300e4bc0a4ff0dfb704 (diff)
downloademacs-173f18ce3c0a59ffbd3b552ecb18d0b84d3a5bc5.tar.gz
emacs-173f18ce3c0a59ffbd3b552ecb18d0b84d3a5bc5.zip
Additional double width specifications.
-rw-r--r--lisp/international/characters.el15
1 files changed, 14 insertions, 1 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el
index 01665440f1c..513209b2752 100644
--- a/lisp/international/characters.el
+++ b/lisp/international/characters.el
@@ -1069,7 +1069,20 @@
1069(map-charset-chars 1069(map-charset-chars
1070 #'(lambda (range ignore) (set-char-table-range char-width-table range 2)) 1070 #'(lambda (range ignore) (set-char-table-range char-width-table range 2))
1071 'japanese-jisx0213-2) 1071 'japanese-jisx0213-2)
1072 1072
1073;; Other double width
1074(map-charset-chars
1075 (lambda (range ignore) (set-char-table-range char-width-table range 2))
1076 'ethiopic)
1077(map-charset-chars
1078 (lambda (range ignore) (set-char-table-range char-width-table range 2))
1079 'tibetan)
1080(map-charset-chars
1081 (lambda (range ignore) (set-char-table-range char-width-table range 2))
1082 'indian-2-column)
1083(map-charset-chars
1084 (lambda (range ignore) (set-char-table-range char-width-table range 2))
1085 'arabic-2-column)
1073 1086
1074;;; Local Variables: 1087;;; Local Variables:
1075;;; coding: utf-8-emacs 1088;;; coding: utf-8-emacs