Both lisp/mule/thai-util.el and lisp/mule/lao-util.el call the
nonexistent function make-category-table. It looks like the call ought
to be (copy-category-table nil). Both files also call define-category
with 3 arguments, but it only takes 2. I think those calls should be
I think that thai-util.el should start like this:
(defconst thai-category-table (copy-category-table nil))
(with-category-table thai-category-table
(define-category ?c "Thai consonant")
(define-category ?v "Thai upper/lower vowel")
(define-category ?t "Thai tone"))
instead of like this:
(defconst thai-category-table (make-category-table))
(define-category ?c "Thai consonant" thai-category-table)
(define-category ?v "Thai upper/lower vowel" thai-category-table)
(define-category ?t "Thai tone" thai-category-table)
and a similar change needs to be made for lao-util.el. Does that look
right?
Also, lisp/mule/ethio-util.el is calling decompose-composite-char, which
is eliciting an obsolete function warning from the byte compiler. It
suggests using char-to-string instead, but I'm not going to pretend that
I understand how this should be fixed.
--
Jerry James
http://www.ittc.ku.edu/~james/