diff options
| author | Eli Zaretskii | 2026-02-28 15:36:07 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2026-02-28 15:36:07 +0200 |
| commit | 0d017fc7ce83006eee93402ba0619b5d21906672 (patch) | |
| tree | 29889d57a754bb0b74eda9d63b099e5a795f1b19 /src/buffer.c | |
| parent | a36d0c66e48fad202a4868c39f9c3e0944eab06d (diff) | |
| download | emacs-0d017fc7ce83006eee93402ba0619b5d21906672.tar.gz emacs-0d017fc7ce83006eee93402ba0619b5d21906672.zip | |
; Fix the documentation of 'overlays-in' etc.
* src/buffer.c (Foverlays_in):
* lisp/subr.el (remove-overlays):
* doc/lispref/display.texi (Finding Overlays, Managing Overlays):
* etc/NEWS: Improve the documentation of recent changes in
behavior of 'overlays-in' and 'remove-overlays'. (Bug#80242)
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index b554cf41874..ec26ff82c78 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -3927,7 +3927,9 @@ END. | |||
| 3927 | 3927 | ||
| 3928 | Empty overlays do not contain any characters, so they are included in the | 3928 | Empty overlays do not contain any characters, so they are included in the |
| 3929 | result if they are located at BEG, between BEG and END, or at END provided | 3929 | result if they are located at BEG, between BEG and END, or at END provided |
| 3930 | END denotes the position at the end of the buffer. | 3930 | END denotes the position at the end of the buffer. (If BEG and END are the |
| 3931 | same buffer position, an empty overlay at BEG will also be at END, but it | ||
| 3932 | still qualifies because it's at BEG.) | ||
| 3931 | 3933 | ||
| 3932 | The resulting list of overlays is in an arbitrary unpredictable order. | 3934 | The resulting list of overlays is in an arbitrary unpredictable order. |
| 3933 | 3935 | ||