* dumper.c (PDUMP_HASH_SIZE): Increase the size of hash table when
utf-2000.
* ioslated-char.el: Disable undo in temporary buffer.
Otherwise, pdump will complain about buffer being undumpable object.
+2001-11-30 Yoshiki Hayashi <yoshiki@xemacs.org>
+
+ * ioslated-char.el: Disable undo in temporary buffer.
+ Otherwise, pdump will complain about buffer being undumpable object.
+
2001-11-29 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
* Ideograph-R131-Minister.el (C3-2A5C): Separated from U+5367 and
;; GT 2000
-(let ((buf (find-file-noselect "../etc/GT-RS.txt")))
- (with-current-buffer buf
+(with-temp-buffer
+ (buffer-disable-undo)
+ (insert-file-contents "../etc/GT-RS.txt")
(goto-char (point-min))
(let (gt-code radical strokes plane code)
(while (re-search-forward "\\([0-9]+\\),\\([0-9]+\\),\\([0-9]+\\),GT\\([0-9]+\\),....,\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" nil t)
(intern (format "ideograph-gt-pj-%d" plane))
code)
)))
- (kill-buffer buf))
(define-char
'((ideograph-gt-pj-1 . #x3F6B)
+2001-11-30 Yoshiki Hayashi <yoshiki@xemacs.org>
+
+ * dumper.c (PDUMP_HASH_SIZE): Increase the size of hash table when
+ utf-2000.
+
2001-11-20 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
* mule-charset.c (put_char_ccs_code_point): Return canonicalized
static int pdump_fd;
static void *pdump_buf;
+#ifdef UTF2000
+#define PDUMP_HASHSIZE 20000001
+#else
#define PDUMP_HASHSIZE 200001
+#endif
static pdump_entry_list_elmt **pdump_hash;