diff options
author | Kenichi Handa <handa@m17n.org> | 2004-09-21 02:26:24 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2004-09-21 02:26:24 +0000 |
commit | 22259c9379683d5580e238e48af3f58b8ff986d9 (patch) | |
tree | a73ea68e39b5177c95fe8caaa700821c1e67ad86 /lisp/descr-text.el | |
parent | ad7d24c4fbfe7f2ceb976db957528ac762145bc8 (diff) | |
download | emacs-22259c9379683d5580e238e48af3f58b8ff986d9.tar.gz |
(describe-char): Checking of quail activation
fixed.
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r-- | lisp/descr-text.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/descr-text.el b/lisp/descr-text.el index c4758a081ce..8ac2d36334b 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -525,7 +525,8 @@ as well as widgets, buttons, overlays, and text properties." (push (format "%s;" (pop props)) ps)) (list (cons "Properties" (nreverse ps))))) ("to input" - ,@(let ((key-list (and current-input-method + ,@(let ((key-list (and (eq input-method-function + 'quail-input-method) (quail-find-key char)))) (if (consp key-list) (list "type" |