1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

(unicode-data): Fix treatment of

numeric-value fields.
This commit is contained in:
Dave Love 2002-12-05 14:31:28 +00:00
parent c94ae9eb26
commit fa64065b1b
2 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,11 @@
2002-12-05 Dave Love <fx@gnu.org>
* international/characters.el: Move parts around so that syntax
definitions aren't overwritten wrongly.
* international/mule-diag.el (unicode-data): Fix treatment of
numeric-value fields.
2002-12-01 Dave Love <fx@gnu.org>
* progmodes/cap-words.el: New file.

View file

@ -1373,14 +1373,11 @@ character)")
parts " "))
(concat info parts))))
(list "Decimal digit value"
(if (nth 5 fields)
(string-to-number (nth 5 fields))))
(nth 5 fields))
(list "Digit value"
(if (nth 6 fields)
(string-to-number (nth 6 fields))))
(nth 6 fields))
(list "Numeric value"
(if (nth 7 fields)
(string-to-number (nth 6 fields))))
(nth 7 fields))
(list "Mirrored"
(if (equal "Y" (nth 8 fields))
"yes"))