1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-06 07:31:13 -08:00

(Fsort): Doc fix.

This commit is contained in:
Kim F. Storm 2005-06-20 21:37:27 +00:00
parent fb056befe7
commit 5c796e808c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-06-20 Kim F. Storm <storm@cua.dk>
* lists.texi (Rearrangement): Sort predicate may just return non-nil.
2005-06-20 Karl Berry <karl@gnu.org>
* syntax.texi (Syntax Flags): Make last column very slightly wider

View file

@ -1892,7 +1892,7 @@ Lisp_Object merge ();
DEFUN ("sort", Fsort, Ssort, 2, 2, 0,
doc: /* Sort LIST, stably, comparing elements using PREDICATE.
Returns the sorted list. LIST is modified by side effects.
PREDICATE is called with two elements of LIST, and should return t
PREDICATE is called with two elements of LIST, and should return non-nil
if the first element is "less" than the second. */)
(list, predicate)
Lisp_Object list, predicate;