aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-09-04 01:11:43 +0000
committerRichard M. Stallman2005-09-04 01:11:43 +0000
commit71f6424d02e7b287a79d1559df0057acb278ea2a (patch)
tree108b2aba2cbad70b53066698e6e3df664f480e2b /src
parent9b7a2369390a58f96cc96f7992bd9737d96af64a (diff)
downloademacs-71f6424d02e7b287a79d1559df0057acb278ea2a.tar.gz
emacs-71f6424d02e7b287a79d1559df0057acb278ea2a.zip
(Fsort): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 1e26ec9a392..3c23aef282e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1894,7 +1894,7 @@ DEFUN ("sort", Fsort, Ssort, 2, 2, 0,
1894 doc: /* Sort LIST, stably, comparing elements using PREDICATE. 1894 doc: /* Sort LIST, stably, comparing elements using PREDICATE.
1895Returns the sorted list. LIST is modified by side effects. 1895Returns the sorted list. LIST is modified by side effects.
1896PREDICATE is called with two elements of LIST, and should return non-nil 1896PREDICATE is called with two elements of LIST, and should return non-nil
1897if the first element is "less" than the second. */) 1897if the first element should sort before the second. */)
1898 (list, predicate) 1898 (list, predicate)
1899 Lisp_Object list, predicate; 1899 Lisp_Object list, predicate;
1900{ 1900{