+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.
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"))