2001-07-09 Yoshiki Hayashi <yoshiki@xemacs.org>
+ * its.el (its-get-keyseq-syl): Use egg-characterp instead of
+ numberp.
+
+2001-07-09 Yoshiki Hayashi <yoshiki@xemacs.org>
+
* egg-edep.el: Define compatibility functions.
(egg-characterp): New function.
;; <key-state-table> ::= ( <key-state-alist> . <expr-output-back-list> )
;; <key-state-alist> ::= ( <key-state> ... )
;; <key-state> ::= ( <key> . <state> )
-;; <key> ::= Positive INTEGER which specifies KEY STROKE
+;; <key> ::= CHARACTER which specifies KEY STROKE
;; | -1 ; means END of key stroke
;;
;; Only applicable for last transition.
l)
((numberp l) ; VSYL
(car syl))
- ((numberp (cdr l))
+ ((egg-characterp (cdr l))
(substring (car l) 0 (cdr l)))
(t
(car l)))))