summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-06-20 21:37:27 +0000
committerKim F. Storm <storm@cua.dk>2005-06-20 21:37:27 +0000
commit5c796e808c3b95dbcd9c2dc149ebe36f6d4e4908 (patch)
treeaf5a10f59c12b0ebd01289cc224382d8f6a11f2d /src/fns.c
parentfb056befe7c785302eb13e524fc57b18c66613c0 (diff)
downloademacs-5c796e808c3b95dbcd9c2dc149ebe36f6d4e4908.tar.gz
(Fsort): Doc fix.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index a36789b4a92..792f94189d1 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -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;