>>>> "SJT" == Stephen J Turnbull
<turnbull(a)sk.tsukuba.ac.jp> writes:
SJT> Finally I've had time to get to the backlog of patches aimed at the
SJT> next release of the 21.4 series.
SJT> on top of things. So I'd appreciate it if people would scan the list
SJT> of changes below for any glaring errors of omission or commission.
I vote for
http://list-archive.xemacs.org/xemacs-patches/200106/msg00061.html
and for
--- lisp/mule/cyrillic.el 2001/06/05 20:16:35 1.1
+++ lisp/mule/cyrillic.el 2001/06/05 20:16:44
@@ -137,11 +137,11 @@
;; `iso-8-1' is not correct, but XEmacs doesn't have a `ccl' category
(coding-system-put 'koi8-r 'category 'iso-8-1)
-;; (define-ccl-program ccl-encode-koi8-font
-;; `(0
-;; ((r1 |= 128)
-;; (r1 = r1 ,cyrillic-koi8-r-encode-table)))
-;; "CCL program to encode Cyrillic chars to KOI font.")
+(define-ccl-program ccl-encode-koi8-r-font
+ `(0
+ ((r1 |= 128)
+ (r1 = r1 ,cyrillic-koi8-r-encode-table)))
+ "CCL program to encode Cyrillic chars to koi8-r font.")
;; (setq font-ccl-encoder-alist
;; (cons (cons "koi8" ccl-encode-koi8-font) font-ccl-encoder-alist))
Those two patches relieve all the pain for Cyrillic users under Mule.
--alexm