'((name) " : " (value))))
(defun www-feature-value-format (feature-name)
- (or (char-feature-property feature-name 'value-format)
+ (or (char-feature-property feature-name 'value-presentation-format)
+ (char-feature-property feature-name 'value-format)
(let (fn parent ret)
(setq fn feature-name)
(while (and (setq parent (char-feature-name-parent fn))
(null (setq ret
- (char-feature-property
- parent 'value-format))))
+ (or (char-feature-property
+ parent 'value-presentation-format)
+ (char-feature-property
+ parent 'value-format)))))
(setq fn parent))
ret)
(let ((type (www-feature-type feature-name)))