aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2008-07-17 01:27:01 +0000
committerKenichi Handa2008-07-17 01:27:01 +0000
commit950b58594c0f86413bb23e3ea8f91a421cf9cefd (patch)
tree496f3b0dac22a396b7187349bedda29352ecae4d
parentff1095d1a66e0317e59efa865f3743f3d420c542 (diff)
downloademacs-950b58594c0f86413bb23e3ea8f91a421cf9cefd.tar.gz
emacs-950b58594c0f86413bb23e3ea8f91a421cf9cefd.zip
(describe-char-unidata-list): Initialize to the
list of name, general-category, decomposition, and old-name.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/descr-text.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3a975feb1f6..8177c0a9814 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-07-17 Kenichi Handa <handa@m17n.org>
2
3 * descr-text.el (describe-char-unidata-list): Initialize to the
4 list of name, general-category, decomposition, and old-name.
5
12008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com> 62008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
2 7
3 * startup.el (command-line-1): Update processing of NS long options to 8 * startup.el (command-line-1): Update processing of NS long options to
diff --git a/lisp/descr-text.el b/lisp/descr-text.el
index 3d655d8d83a..e14e1edbebb 100644
--- a/lisp/descr-text.el
+++ b/lisp/descr-text.el
@@ -179,7 +179,8 @@ otherwise."
179 (insert "There are text properties here:\n") 179 (insert "There are text properties here:\n")
180 (describe-property-list properties))))) 180 (describe-property-list properties)))))
181 181
182(defcustom describe-char-unidata-list nil 182(defcustom describe-char-unidata-list
183 '(name general-category decomposition old-name)
183 "List of Unicode-based character property names shown by `describe-char'." 184 "List of Unicode-based character property names shown by `describe-char'."
184 :group 'mule 185 :group 'mule
185 :version "23.1" 186 :version "23.1"