summaryrefslogtreecommitdiff
path: root/lisp/descr-text.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2008-11-22 20:43:27 +0000
committerJuri Linkov <juri@jurta.org>2008-11-22 20:43:27 +0000
commit0e0f6cbde0ac647c2f9a2873693f1d14ca3d58a1 (patch)
tree686cb7516631caf6a810786ea69c2bd48283bb64 /lisp/descr-text.el
parent6cc725cde50ff493db6b8bfb473e87af4671b21f (diff)
downloademacs-0e0f6cbde0ac647c2f9a2873693f1d14ca3d58a1.tar.gz
(describe-char-unidata-list): Move `old-name' to be immediately after `name'.
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r--lisp/descr-text.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/descr-text.el b/lisp/descr-text.el
index 689e4d3df6a..f7bf647d151 100644
--- a/lisp/descr-text.el
+++ b/lisp/descr-text.el
@@ -180,13 +180,14 @@ otherwise."
(describe-property-list properties)))))
(defcustom describe-char-unidata-list
- '(name general-category decomposition old-name)
+ '(name old-name general-category decomposition)
"List of Unicode-based character property names shown by `describe-char'."
:group 'mule
:version "23.1"
:type '(choice (const :tag "All properties" t)
(set
(const :tag "Unicode Name" name)
+ (const :tag "Unicode old name" old-name)
(const :tag "Unicode general category " general-category)
(const :tag "Unicode canonical combining class"
canonical-combining-class)
@@ -196,7 +197,6 @@ otherwise."
(const :tag "Unicode digit value" digit-value)
(const :tag "Unicode numeric value" numeric-value)
(const :tag "Unicode mirrored" mirrored)
- (const :tag "Unicode old name" old-name)
(const :tag "Unicode ISO 10646 comment" iso-10646-comment)
(const :tag "Unicode simple uppercase mapping" uppercase)
(const :tag "Unicode simple lowercase mapping" lowercase)