aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-06-20 21:37:47 +0000
committerKim F. Storm2005-06-20 21:37:47 +0000
commitc72c50043b950cbcc4c463194595571715984d71 (patch)
tree85f200b4ec47fe728547911a0914a1fc260da977
parent5c796e808c3b95dbcd9c2dc149ebe36f6d4e4908 (diff)
downloademacs-c72c50043b950cbcc4c463194595571715984d71.tar.gz
emacs-c72c50043b950cbcc4c463194595571715984d71.zip
(Rearrangement): Sort predicate may just return non-nil.
-rw-r--r--lispref/lists.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index a5a2c33bcce..c84a998b573 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -1105,7 +1105,7 @@ criteria.
1105 1105
1106The argument @var{predicate} must be a function that accepts two 1106The argument @var{predicate} must be a function that accepts two
1107arguments. It is called with two elements of @var{list}. To get an 1107arguments. It is called with two elements of @var{list}. To get an
1108increasing order sort, the @var{predicate} should return @code{t} if the 1108increasing order sort, the @var{predicate} should return non-@code{nil} if the
1109first element is ``less than'' the second, or @code{nil} if not. 1109first element is ``less than'' the second, or @code{nil} if not.
1110 1110
1111The comparison function @var{predicate} must give reliable results for 1111The comparison function @var{predicate} must give reliable results for