aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov2008-11-22 20:43:27 +0000
committerJuri Linkov2008-11-22 20:43:27 +0000
commit0e0f6cbde0ac647c2f9a2873693f1d14ca3d58a1 (patch)
tree686cb7516631caf6a810786ea69c2bd48283bb64 /lisp
parent6cc725cde50ff493db6b8bfb473e87af4671b21f (diff)
downloademacs-0e0f6cbde0ac647c2f9a2873693f1d14ca3d58a1.tar.gz
emacs-0e0f6cbde0ac647c2f9a2873693f1d14ca3d58a1.zip
(describe-char-unidata-list): Move `old-name' to be immediately after `name'.
Diffstat (limited to 'lisp')
-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."
180 (describe-property-list properties))))) 180 (describe-property-list properties)))))
181 181
182(defcustom describe-char-unidata-list 182(defcustom describe-char-unidata-list
183 '(name general-category decomposition old-name) 183 '(name old-name general-category decomposition)
184 "List of Unicode-based character property names shown by `describe-char'." 184 "List of Unicode-based character property names shown by `describe-char'."
185 :group 'mule 185 :group 'mule
186 :version "23.1" 186 :version "23.1"
187 :type '(choice (const :tag "All properties" t) 187 :type '(choice (const :tag "All properties" t)
188 (set 188 (set
189 (const :tag "Unicode Name" name) 189 (const :tag "Unicode Name" name)
190 (const :tag "Unicode old name" old-name)
190 (const :tag "Unicode general category " general-category) 191 (const :tag "Unicode general category " general-category)
191 (const :tag "Unicode canonical combining class" 192 (const :tag "Unicode canonical combining class"
192 canonical-combining-class) 193 canonical-combining-class)
@@ -196,7 +197,6 @@ otherwise."
196 (const :tag "Unicode digit value" digit-value) 197 (const :tag "Unicode digit value" digit-value)
197 (const :tag "Unicode numeric value" numeric-value) 198 (const :tag "Unicode numeric value" numeric-value)
198 (const :tag "Unicode mirrored" mirrored) 199 (const :tag "Unicode mirrored" mirrored)
199 (const :tag "Unicode old name" old-name)
200 (const :tag "Unicode ISO 10646 comment" iso-10646-comment) 200 (const :tag "Unicode ISO 10646 comment" iso-10646-comment)
201 (const :tag "Unicode simple uppercase mapping" uppercase) 201 (const :tag "Unicode simple uppercase mapping" uppercase)
202 (const :tag "Unicode simple lowercase mapping" lowercase) 202 (const :tag "Unicode simple lowercase mapping" lowercase)