# HG changeset patch # User Kenichi Handa # Date 984353891 0 # Node ID d80d936f61657b61b2b26b67d59e6092b8475560 # Parent 5a49fa31ec0bc4c211d45f6c6f5a775571263916 (quail-translate-key): Fix condition to check if there's another breaking point in the current key. diff -r 5a49fa31ec0b -r d80d936f6165 lisp/international/quail.el --- a/lisp/international/quail.el Sun Mar 11 23:37:43 2001 +0000 +++ b/lisp/international/quail.el Sun Mar 11 23:38:11 2001 +0000 @@ -1628,7 +1628,7 @@ ;; 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))