emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 b04fcc4 37/64: Fcompare_buffer_substrings doc str


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] emacs-25 b04fcc4 37/64: Fcompare_buffer_substrings doc string clarification
Date: Sun, 01 May 2016 18:18:41 +0000

branch: emacs-25
commit b04fcc4a38f9ad0cff43ecccc28934e8769f3538
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fcompare_buffer_substrings doc string clarification
    
    * src/editfns.c (Fcompare_buffer_substrings): Extremely minor
    doc string clarification (bug#19255).
    
    (cherry picked from commit aa692acbb598a1cc8219ed7a87dde25fd7626ba5)
---
 src/editfns.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/editfns.c b/src/editfns.c
index 94b9495..f0ce4e7 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2882,10 +2882,9 @@ DEFUN ("compare-buffer-substrings", 
Fcompare_buffer_substrings, Scompare_buffer_
        6, 6, 0,
        doc: /* Compare two substrings of two buffers; return result as number.
 Return -N if first string is less after N-1 chars, +N if first string is
-greater after N-1 chars, or 0 if strings match.  Each substring is
-represented as three arguments: BUFFER, START and END.  That makes six
-args in all, three for each substring.
-
+greater after N-1 chars, or 0 if strings match.
+The first substring is in BUFFER1 from START1 to END1 and the second
+is in BUFFER2 from START2 to END2.
 The value of `case-fold-search' in the current buffer
 determines whether case is significant or ignored.  */)
   (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object 
buffer2, Lisp_Object start2, Lisp_Object end2)



reply via email to

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