From 233186c37f770a4f1b4c42d12cdbdf7f12519fd1 Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 24 Feb 2004 06:02:14 +0000 Subject: [PATCH] (ids-dump-insert-daikanwa-hokan): Fix problem when a character does not have `ideographic-structure' feature value. --- ids-dump.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ids-dump.el b/ids-dump.el index 6d770a0..03ada62 100644 --- a/ids-dump.el +++ b/ids-dump.el @@ -127,8 +127,9 @@ (format "MH-%04d \t%c\t%s\n" (car cell) chr - (ids-format-list - (get-char-attribute chr 'ideographic-structure))))))) + (or (ids-format-list + (get-char-attribute chr 'ideographic-structure)) + "")))))) (defun ids-dump-insert-jis-x0208-1990 () (let ((row 16) -- 1.7.10.4