diff options
| author | Lars Ingebrigtsen | 2016-04-30 18:20:29 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-04-30 18:20:29 +0200 |
| commit | aa692acbb598a1cc8219ed7a87dde25fd7626ba5 (patch) | |
| tree | 1ee241e2d025b16c07ce8e189f75c44fc43b4599 /src | |
| parent | b6481b19bc9592492b1f70dfecb4de6256f537fe (diff) | |
| download | emacs-aa692acbb598a1cc8219ed7a87dde25fd7626ba5.tar.gz emacs-aa692acbb598a1cc8219ed7a87dde25fd7626ba5.zip | |
Fcompare_buffer_substrings doc string clarification
* src/editfns.c (Fcompare_buffer_substrings): Extremely minor
doc string clarification (bug#19255).
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index 48f2a8de126..e267c2f2909 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2933,10 +2933,9 @@ DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_ | |||
| 2933 | 6, 6, 0, | 2933 | 6, 6, 0, |
| 2934 | doc: /* Compare two substrings of two buffers; return result as number. | 2934 | doc: /* Compare two substrings of two buffers; return result as number. |
| 2935 | Return -N if first string is less after N-1 chars, +N if first string is | 2935 | Return -N if first string is less after N-1 chars, +N if first string is |
| 2936 | greater after N-1 chars, or 0 if strings match. Each substring is | 2936 | greater after N-1 chars, or 0 if strings match. |
| 2937 | represented as three arguments: BUFFER, START and END. That makes six | 2937 | The first substring is in BUFFER1 from START1 to END1 and the second |
| 2938 | args in all, three for each substring. | 2938 | is in BUFFER2 from START2 to END2. |
| 2939 | |||
| 2940 | The value of `case-fold-search' in the current buffer | 2939 | The value of `case-fold-search' in the current buffer |
| 2941 | determines whether case is significant or ignored. */) | 2940 | determines whether case is significant or ignored. */) |
| 2942 | (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object buffer2, Lisp_Object start2, Lisp_Object end2) | 2941 | (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object buffer2, Lisp_Object start2, Lisp_Object end2) |