]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-sort-items): Avoid symbol-name with new
authorDave Love <fx@gnu.org>
Thu, 13 Apr 2000 19:05:10 +0000 (19:05 +0000)
committerDave Love <fx@gnu.org>
Thu, 13 Apr 2000 19:05:10 +0000 (19:05 +0000)
string-lessp.

lisp/cus-edit.el

index 50759537ecb34ba0830468956feab6a0199e817e..a559fbe60e51ca45ed188f509f5750d43268ee04 100644 (file)
@@ -609,7 +609,7 @@ groups after non-groups, if nil do not order groups at all."
   (sort (copy-sequence items)
    (lambda (a b)
      (let ((typea (nth 1 a)) (typeb (nth 1 b))
-          (namea (symbol-name (nth 0 a))) (nameb (symbol-name (nth 0 b))))
+          (namea (nth 0 a)) (nameb (nth 0 b)))
        (cond ((not order-groups)
              ;; Since we don't care about A and B order, maybe sort.
              (when sort-alphabetically