diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c index 0bcc439e50e..dcb1d8d6b88 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2936,6 +2936,10 @@ 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. | 2936 | greater after N-1 chars, or 0 if strings match. |
| 2937 | The first substring is in BUFFER1 from START1 to END1 and the second | 2937 | The first substring is in BUFFER1 from START1 to END1 and the second |
| 2938 | is in BUFFER2 from START2 to END2. | 2938 | is in BUFFER2 from START2 to END2. |
| 2939 | All arguments may be nil. If BUFFER1 or BUFFER2 is nil, the current | ||
| 2940 | buffer is used. If START1 or START2 is nil, the value of `point-min' | ||
| 2941 | in the respective buffers is used. If END1 or END2 is nil, the value | ||
| 2942 | of `point-max' in the respective buffers is used. | ||
| 2939 | The value of `case-fold-search' in the current buffer | 2943 | The value of `case-fold-search' in the current buffer |
| 2940 | determines whether case is significant or ignored. */) | 2944 | determines whether case is significant or ignored. */) |
| 2941 | (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object buffer2, Lisp_Object start2, Lisp_Object end2) | 2945 | (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object buffer2, Lisp_Object start2, Lisp_Object end2) |