1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* lisp/descr-text.el (describe-char-unicode-data): Fix copy/paste errors.

This commit is contained in:
Eli Zaretskii 2016-06-27 19:13:48 +03:00
parent defdee72c4
commit 058e856277

View File

@ -277,12 +277,12 @@ This function is semi-obsolete. Use `get-char-code-property'."
'general-category (intern val))
val)))
(list "Combining class"
(let ((val (nth 1 fields)))
(let ((val (nth 2 fields)))
(or (char-code-property-description
'canonical-combining-class (intern val))
val)))
(list "Bidi category"
(let ((val (nth 1 fields)))
(let ((val (nth 3 fields)))
(or (char-code-property-description
'bidi-class (intern val))
val)))