diff options
author | Kenichi Handa <handa@m17n.org> | 2006-01-20 02:03:51 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2006-01-20 02:03:51 +0000 |
commit | 180505d55e3486320b9137534b2e4c3280c70d8a (patch) | |
tree | 45ad8e9dae6ca4a718e142e404f86dd135cccbf5 /lisp/descr-text.el | |
parent | 3a7d24544d36ea6a6a8f523381fcb9822da4f6d3 (diff) | |
download | emacs-180505d55e3486320b9137534b2e4c3280c70d8a.tar.gz |
(describe-char): Fix for sync with HEAD.
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r-- | lisp/descr-text.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/descr-text.el b/lisp/descr-text.el index 8a32f6202c5..599ee7ffeb3 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -506,8 +506,7 @@ as well as widgets, buttons, overlays, and text properties." `(insert-text-button ,(symbol-name face) 'type 'help-face 'help-args '(,face)))))) - ,@(let ((unicodedata (and unicode - (describe-char-unicode-data unicode)))) + ,@(let ((unicodedata (describe-char-unicode-data char))) (if unicodedata (cons (list "Unicode data" " ") unicodedata))))) (setq max-width (apply #'max (mapcar #'(lambda (x) |