aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
authorGlenn Morris2012-12-09 18:00:42 -0800
committerGlenn Morris2012-12-09 18:00:42 -0800
commit265c2fbf11cb8bf9b805df63ecb9508631f08e35 (patch)
tree808684294d7ec600f5300e0a5d5f868740096f7b /src/editfns.c
parent5f460827dd14fbfae26ac8451cedd4446817d1ec (diff)
parentf433306af510e86a614e9f9f082b6d2d5f56a968 (diff)
downloademacs-265c2fbf11cb8bf9b805df63ecb9508631f08e35.tar.gz
emacs-265c2fbf11cb8bf9b805df63ecb9508631f08e35.zip
Merge from emacs-24; up to 2012-11-26T19:56:14Z!monnier@iro.umontreal.ca
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 7d179c8566a..eb909f73697 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -2635,10 +2635,10 @@ They default to the values of (point-min) and (point-max) in BUFFER. */)
2635DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings, 2635DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2636 6, 6, 0, 2636 6, 6, 0,
2637 doc: /* Compare two substrings of two buffers; return result as number. 2637 doc: /* Compare two substrings of two buffers; return result as number.
2638the value is -N if first string is less after N-1 chars, 2638Return -N if first string is less after N-1 chars, +N if first string is
2639+N if first string is greater after N-1 chars, or 0 if strings match. 2639greater after N-1 chars, or 0 if strings match. Each substring is
2640Each substring is represented as three arguments: BUFFER, START and END. 2640represented as three arguments: BUFFER, START and END. That makes six
2641That makes six args in all, three for each substring. 2641args in all, three for each substring.
2642 2642
2643The value of `case-fold-search' in the current buffer 2643The value of `case-fold-search' in the current buffer
2644determines whether case is significant or ignored. */) 2644determines whether case is significant or ignored. */)