]> git.eshelyaron.com Git - emacs.git/commitdiff
Reword doc-string of Fcompare_buffer_substrings.
authorMartin Rudalics <rudalics@gmx.at>
Fri, 7 Dec 2012 09:45:03 +0000 (10:45 +0100)
committerMartin Rudalics <rudalics@gmx.at>
Fri, 7 Dec 2012 09:45:03 +0000 (10:45 +0100)
* editfns.c (Fcompare_buffer_substrings): Reword doc-string.

etc/NEWS
src/ChangeLog
src/editfns.c

index a16bdcfd44a4161477de0ca2c5f44f59b4a40d99..4cf2e9d6da979bb9466ddacbd08709849265dd9e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -701,6 +701,10 @@ depends on the graphical library.
 that substring is inserted literally even if the LITERAL arg is
 non-nil, instead of causing an error to be signaled.
 
++++
+** `select-window' now always makes the window's buffer current.
+It does so even if the window was selected before.
+
 +++
 ** Docstrings starting with `*' no longer indicate user options.
 Only variables defined using `defcustom' are considered user options.
index 106333ac8ed1d473f4681aea7e878904e1048b51..f9edb039b1c6b0700fa57e367f5acca56df1ef16 100644 (file)
@@ -1,3 +1,7 @@
+2012-12-07  Martin Rudalics  <rudalics@gmx.at>
+
+       * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
+
 2012-12-05  Eli Zaretskii  <eliz@gnu.org>
 
        * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
index 8122ffdd0d46c8e039ec9ee10596313d44316c5c..f0f380329cf6bc0a5a98078a56844e14a6ab5ca4 100644 (file)
@@ -2650,10 +2650,10 @@ They default to the values of (point-min) and (point-max) in BUFFER.  */)
 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
        6, 6, 0,
        doc: /* Compare two substrings of two buffers; return result as number.
-the value is -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.
+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.
 
 The value of `case-fold-search' in the current buffer
 determines whether case is significant or ignored.  */)