Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b5ff8004
Commit
b5ff8004
authored
Feb 07, 1993
by
Richard M. Stallman
Browse files
(sort-subr): Fix previous change.
parent
4f1b6c54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/sort.el
lisp/sort.el
+4
-4
No files found.
lisp/sort.el
View file @
b5ff8004
...
...
@@ -79,8 +79,8 @@ same as ENDRECFUN."
(
function
(
lambda
(
a
b
)
(
>
0
(
compare-buffer-substrings
nil
(
car
a
)
(
nth
1
a
)
nil
(
car
b
)
(
nth
1
b
))))))
nil
(
car
a
)
(
cdr
a
)
nil
(
car
b
)
(
cdr
b
))))))
(
t
'string<
)))
(
sort
sort-lists
...
...
@@ -92,8 +92,8 @@ same as ENDRECFUN."
(
function
(
lambda
(
a
b
)
(
>
0
(
compare-buffer-substrings
nil
(
car
(
car
a
))
(
nth
1
(
car
a
))
nil
(
car
(
car
b
))
(
nth
1
(
car
b
)))))))
nil
(
car
(
car
a
))
(
cdr
(
car
a
))
nil
(
car
(
car
b
))
(
cdr
(
car
b
)))))))
(
t
(
function
(
lambda
(
a
b
)
...
...
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