diff options
| author | Martin Rudalics | 2012-12-07 10:45:03 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2012-12-07 10:45:03 +0100 |
| commit | 2cec368c81f0056f7d3f4ce9aa247ef56d3053a7 (patch) | |
| tree | d366bc31a57e690dbf473a6a6c7c257750f7827a /src/editfns.c | |
| parent | 3a21537c13a64983fadbdf64c19b5822297e89cc (diff) | |
| download | emacs-2cec368c81f0056f7d3f4ce9aa247ef56d3053a7.tar.gz emacs-2cec368c81f0056f7d3f4ce9aa247ef56d3053a7.zip | |
Reword doc-string of Fcompare_buffer_substrings.
* editfns.c (Fcompare_buffer_substrings): Reword doc-string.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 8 |
1 files changed, 4 insertions, 4 deletions
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. */) | |||
| 2650 | DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings, | 2650 | DEFUN ("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. |
| 2653 | the value is -N if first string is less after N-1 chars, | 2653 | Return -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. | 2654 | greater after N-1 chars, or 0 if strings match. Each substring is |
| 2655 | Each substring is represented as three arguments: BUFFER, START and END. | 2655 | represented as three arguments: BUFFER, START and END. That makes six |
| 2656 | That makes six args in all, three for each substring. | 2656 | args in all, three for each substring. |
| 2657 | 2657 | ||
| 2658 | The value of `case-fold-search' in the current buffer | 2658 | The value of `case-fold-search' in the current buffer |
| 2659 | determines whether case is significant or ignored. */) | 2659 | determines whether case is significant or ignored. */) |