emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117884: Tweak sort docstring


From: Daniel Colascione
Subject: [Emacs-diffs] trunk r117884: Tweak sort docstring
Date: Mon, 15 Sep 2014 05:10:01 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117884
revision-id: address@hidden
parent: address@hidden
committer: Daniel Colascione <address@hidden>
branch nick: trunk
timestamp: Sun 2014-09-14 22:09:44 -0700
message:
  Tweak sort docstring
  
  * fns.c (Fsort): Tweak sort docstring.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/fns.c                      fns.c-20091113204419-o5vbwnq5f7feedwu-203
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-09-15 00:20:21 +0000
+++ b/src/ChangeLog     2014-09-15 05:09:44 +0000
@@ -1,3 +1,7 @@
+2014-09-15  Daniel Colascione  <address@hidden>
+
+       * fns.c (Fsort): Tweak sort docstring.
+
 2014-09-15  Eli Zaretskii  <address@hidden>
 
        * w32.c (fcntl): Support O_NONBLOCK fcntl on the write side of pipes.

=== modified file 'src/fns.c'
--- a/src/fns.c 2014-09-07 07:04:01 +0000
+++ b/src/fns.c 2014-09-15 05:09:44 +0000
@@ -2005,10 +2005,10 @@
 
 DEFUN ("sort", Fsort, Ssort, 2, 2, 0,
        doc: /* Sort SEQ, stably, comparing elements using PREDICATE.
-Returns the sorted sequence.  SEQ should be a list or vector.
-If SEQ is a list, it is modified by side effects.  PREDICATE
-is called with two elements of SEQ, and should return non-nil
-if the first element should sort before the second.  */)
+Returns the sorted sequence.  SEQ should be a list or vector.  SEQ is
+modified by side effects.  PREDICATE is called with two elements of
+SEQ, and should return non-nil if the first element should sort before
+the second.  */)
   (Lisp_Object seq, Lisp_Object predicate)
 {
   if (CONSP (seq))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]