aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-01-17 14:00:11 +0000
committerDave Love2003-01-17 14:00:11 +0000
commite9b2b83231dc2c3c250392436503f7940b2cd24f (patch)
tree2eaef220d743e49f58ea497d4ef51d0643817968
parent72bb55c6b2629bd33255e8fa7064cc1a4247f487 (diff)
downloademacs-e9b2b83231dc2c3c250392436503f7940b2cd24f.tar.gz
emacs-e9b2b83231dc2c3c250392436503f7940b2cd24f.zip
Redo 8859-6 change in the right
place.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/ucs-tables.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 79b065747d0..39961050d14 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-01-17 Dave Love <fx@gnu.org>
2
3 * international/ucs-tables.el: Redo 8859-6 change in the right
4 place.
5
12003-01-17 Kenichi Handa <handa@m17n.org> 62003-01-17 Kenichi Handa <handa@m17n.org>
2 7
3 * international/fontset.el: Don't setup the default fontset and 8 * international/fontset.el: Don't setup the default fontset and
diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el
index 9a14da44a01..5a21044b764 100644
--- a/lisp/international/ucs-tables.el
+++ b/lisp/international/ucs-tables.el
@@ -1097,7 +1097,7 @@ Translates from the iso8859 charsets and `mule-unicode-0100-24ff'.")
1097 ;; table `utf-translation-table-for-decode' does nothing. 1097 ;; table `utf-translation-table-for-decode' does nothing.
1098 1098
1099 ;; Convert the lists to the basic char tables. 1099 ;; Convert the lists to the basic char tables.
1100 (dolist (n (list 15 14 9 8 7 5 4 3 2 1)) 1100 (dolist (n (list 15 14 9 8 7 6 5 4 3 2 1))
1101 (let ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n))))) 1101 (let ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n)))))
1102 (dolist (pair alist) 1102 (dolist (pair alist)
1103 (let ((mule (car pair)) 1103 (let ((mule (car pair))
@@ -1111,6 +1111,7 @@ Translates from the iso8859 charsets and `mule-unicode-0100-24ff'.")
1111 1111
1112 ;; Derive tables that can be used as per-coding-system 1112 ;; Derive tables that can be used as per-coding-system
1113 ;; `translation-table-for-encode's. 1113 ;; `translation-table-for-encode's.
1114 ;; N.B., there's no 8859-6 coding system.
1114 (dolist (n (list 15 14 9 8 7 5 4 3 2 1)) 1115 (dolist (n (list 15 14 9 8 7 5 4 3 2 1))
1115 (let* ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n)))) 1116 (let* ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n))))
1116 (encode-translator (set (intern (format "ucs-8859-%d-encode-table" 1117 (encode-translator (set (intern (format "ucs-8859-%d-encode-table"