diff options
author | Kenichi Handa <handa@m17n.org> | 2001-03-11 23:38:11 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2001-03-11 23:38:11 +0000 |
commit | a1233357b56b6c59baf159a1a3f52b1bc695b19a (patch) | |
tree | 6e1d732c2eefd70da5acb6a481a6262da295034c /lisp/international/quail.el | |
parent | 5c9d9d92bdebd83d2aed1022aa8252cf9e16ed43 (diff) | |
download | emacs-a1233357b56b6c59baf159a1a3f52b1bc695b19a.tar.gz |
(quail-translate-key): Fix condition to
check if there's another breaking point in the current key.
Diffstat (limited to 'lisp/international/quail.el')
-rw-r--r-- | lisp/international/quail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/quail.el b/lisp/international/quail.el index e6b9feb3760..c9c298fce98 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el @@ -1628,7 +1628,7 @@ sequence counting from the head." ;; giving up, we must check two possibilities. (cond ((and (quail-maximum-shortest) - (>= len 4) + (>= len 3) (setq def (quail-map-definition (quail-lookup-key quail-current-key (- len 2)))) (quail-lookup-key (substring quail-current-key -2) 2)) |