From 2e9f2457f920ecb0891cc0cd5f1796140031a92b Mon Sep 17 00:00:00 2001 From: hayashi Date: Mon, 9 Jul 2001 06:30:02 +0000 Subject: [PATCH] * its.el (its-get-keyseq-syl): Use egg-characterp instead of numberp. --- ChangeLog | 5 +++++ its.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1ab6fbb..0bc8724 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2001-07-09 Yoshiki Hayashi + * its.el (its-get-keyseq-syl): Use egg-characterp instead of + numberp. + +2001-07-09 Yoshiki Hayashi + * egg-edep.el: Define compatibility functions. (egg-characterp): New function. diff --git a/its.el b/its.el index 25728ea..8d05597 100644 --- a/its.el +++ b/its.el @@ -130,7 +130,7 @@ ;; ::= ( . ) ;; ::= ( ... ) ;; ::= ( . ) -;; ::= Positive INTEGER which specifies KEY STROKE +;; ::= CHARACTER which specifies KEY STROKE ;; | -1 ; means END of key stroke ;; ;; Only applicable for last transition. @@ -213,7 +213,7 @@ l) ((numberp l) ; VSYL (car syl)) - ((numberp (cdr l)) + ((egg-characterp (cdr l)) (substring (car l) 0 (cdr l))) (t (car l))))) -- 1.7.10.4