aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/editfns.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 106333ac8ed..f9edb039b1c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12012-12-07 Martin Rudalics <rudalics@gmx.at>
2
3 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
4
12012-12-05 Eli Zaretskii <eliz@gnu.org> 52012-12-05 Eli Zaretskii <eliz@gnu.org>
2 6
3 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp 7 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
diff --git a/src/editfns.c b/src/editfns.c
index 8122ffdd0d4..f0f380329cf 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2650,10 +2650,10 @@ They default to the values of (point-min) and (point-max) in BUFFER. */)
2650DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings, 2650DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2651 6, 6, 0, 2651 6, 6, 0,
2652 doc: /* Compare two substrings of two buffers; return result as number. 2652 doc: /* Compare two substrings of two buffers; return result as number.
2653the value is -N if first string is less after N-1 chars, 2653Return -N if first string is less after N-1 chars, +N if first string is
2654+N if first string is greater after N-1 chars, or 0 if strings match. 2654greater after N-1 chars, or 0 if strings match. Each substring is
2655Each substring is represented as three arguments: BUFFER, START and END. 2655represented as three arguments: BUFFER, START and END. That makes six
2656That makes six args in all, three for each substring. 2656args in all, three for each substring.
2657 2657
2658The value of `case-fold-search' in the current buffer 2658The value of `case-fold-search' in the current buffer
2659determines whether case is significant or ignored. */) 2659determines whether case is significant or ignored. */)