aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2008-06-09 01:19:02 +0000
committerKenichi Handa2008-06-09 01:19:02 +0000
commit9c346e0d074f8be580ef9152be73cfb8fc7424d8 (patch)
tree9c447b781d83bbb91d216202c012a8e3988923a2
parentb7149a8192f9416d9e2201f6dfec899167309a6c (diff)
downloademacs-9c346e0d074f8be580ef9152be73cfb8fc7424d8.tar.gz
emacs-9c346e0d074f8be580ef9152be73cfb8fc7424d8.zip
(hanja-init-load): Show the message only when loading a table.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/language/hanja-util.el5
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4231b8871cb..8f0bc80d477 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-06-09 Jihyun Cho <jihyun.jo@gmail.com>
2
3 * language/hanja-util.el (hanja-init-load): Show the message only
4 when loading a table.
5
12008-06-08 Ulf Jasper <ulf.jasper@web.de> 62008-06-08 Ulf Jasper <ulf.jasper@web.de>
2 7
3 * net/newsticker-treeview.el (newsticker-treeview): Added autoload 8 * net/newsticker-treeview.el (newsticker-treeview): Added autoload
diff --git a/lisp/language/hanja-util.el b/lisp/language/hanja-util.el
index fc7aacfff8c..dc5a8403277 100644
--- a/lisp/language/hanja-util.el
+++ b/lisp/language/hanja-util.el
@@ -36,8 +36,8 @@ character. This variable is initialized by `hanja-init-load'.")
36 36
37(defun hanja-init-load () 37(defun hanja-init-load ()
38 "Initialize `hanja-table' (which see)." 38 "Initialize `hanja-table' (which see)."
39 (message "Hanja table loading..")
40 (when (not hanja-table) 39 (when (not hanja-table)
40 (message "Hanja table loading..")
41 (setq hanja-table (make-char-table nil)) 41 (setq hanja-table (make-char-table nil))
42 (mapc 42 (mapc
43 (lambda (x) (aset hanja-table (car x) (cdr x))) 43 (lambda (x) (aset hanja-table (car x) (cdr x)))
@@ -6431,7 +6431,8 @@ character. This variable is initialized by `hanja-init-load'.")
6431 (55184 . ((35440 . "물을 힐, 힐문할 힐") (40672 . "약을 힐") 6431 (55184 . ((35440 . "물을 힐, 힐문할 힐") (40672 . "약을 힐")
6432 32953 (38945 . "곧은목 힐") (32392 . "홀치기염색 힐") 6432 32953 (38945 . "곧은목 힐") (32392 . "홀치기염색 힐")
6433 25847 32952 25783 32556 35800 39049 (29365 . "오랑캐이름 힐") 6433 25847 32952 25783 32556 35800 39049 (29365 . "오랑캐이름 힐")
6434 (35181 . "옷자락 꽂을 힐") 24644 27439 32723 14954)))))) 6434 (35181 . "옷자락 꽂을 힐") 24644 27439 32723 14954))))
6435 (message "")))
6435 6436
6436;; List of current conversion status. 6437;; List of current conversion status.
6437;; The first element is the strating position of shown list. 6438;; The first element is the strating position of shown list.