diff options
| author | Dave Love | 2003-01-15 17:53:16 +0000 |
|---|---|---|
| committer | Dave Love | 2003-01-15 17:53:16 +0000 |
| commit | 59367f560857e95efebc6c4662701af711e29b23 (patch) | |
| tree | 6b98c4b3ae4a2b8acf36c2adc1cffb57b638ef2c | |
| parent | 33186f32d8061fec2d61797bbcb1f44aa028e3bd (diff) | |
| download | emacs-59367f560857e95efebc6c4662701af711e29b23.tar.gz emacs-59367f560857e95efebc6c4662701af711e29b23.zip | |
Set up tables for 8859-6.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/international/ucs-tables.el | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0f9ccb9abf9..a633d951b4d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2003-01-15 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * international/ucs-tables.el: Set up tables for 8859-6. | ||
| 4 | |||
| 5 | * server.el (server-window): Customize. | ||
| 6 | (server-mode): New. | ||
| 7 | (server-unload-hook): Call server-start. | ||
| 8 | |||
| 1 | 2003-01-15 John Wiegley <johnw@gnu.org> | 9 | 2003-01-15 John Wiegley <johnw@gnu.org> |
| 2 | 10 | ||
| 3 | * eshell/em-hist.el (eshell-save-history-on-exit): Renamed | 11 | * eshell/em-hist.el (eshell-save-history-on-exit): Renamed |
diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el index 9a14da44a01..68a73e57bf2 100644 --- a/lisp/international/ucs-tables.el +++ b/lisp/international/ucs-tables.el | |||
| @@ -1111,7 +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 | (dolist (n (list 15 14 9 8 7 5 4 3 2 1)) | 1114 | (dolist (n (list 15 14 9 8 7 6 5 4 3 2 1)) |
| 1115 | (let* ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n)))) | 1115 | (let* ((alist (symbol-value (intern (format "ucs-8859-%d-alist" n)))) |
| 1116 | (encode-translator (set (intern (format "ucs-8859-%d-encode-table" | 1116 | (encode-translator (set (intern (format "ucs-8859-%d-encode-table" |
| 1117 | n)) | 1117 | n)) |