From 1768485be43e1db79d86cc32a05f909de26ad694 Mon Sep 17 00:00:00 2001 From: tomo Date: Wed, 13 Nov 2002 03:26:53 +0000 Subject: [PATCH] (ids-dump-insert-jis-x0208-1990): Don't insert `nil'. --- ids-dump.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ids-dump.el b/ids-dump.el index 678d6aa..de48c6e 100644 --- a/ids-dump.el +++ b/ids-dump.el @@ -125,8 +125,9 @@ h l (decode-builtin-char 'japanese-jisx0208-1990 (logior (lsh h 8) l)) - (ids-format-list - (get-char-attribute chr 'ideographic-structure)))) + (or (ids-format-list + (get-char-attribute chr 'ideographic-structure)) + ""))) (setq cell (1+ cell))) (setq row (1+ row))) (setq h (+ row 32)) @@ -139,8 +140,9 @@ h l (decode-builtin-char 'japanese-jisx0208-1990 (logior (lsh h 8) l)) - (ids-format-list - (get-char-attribute chr 'ideographic-structure)))) + (or (ids-format-list + (get-char-attribute chr 'ideographic-structure)) + ""))) (setq cell (1+ cell))))) (defun ids-dump-range (file path func &rest args) -- 1.7.10.4