Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
359476e0
Commit
359476e0
authored
Apr 13, 2000
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(custom-sort-items): Avoid symbol-name with new
string-lessp.
parent
be0dd657
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/cus-edit.el
lisp/cus-edit.el
+1
-1
No files found.
lisp/cus-edit.el
View file @
359476e0
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment