aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorEli Zaretskii2026-02-28 15:36:07 +0200
committerEli Zaretskii2026-02-28 15:36:07 +0200
commit0d017fc7ce83006eee93402ba0619b5d21906672 (patch)
tree29889d57a754bb0b74eda9d63b099e5a795f1b19 /src/buffer.c
parenta36d0c66e48fad202a4868c39f9c3e0944eab06d (diff)
downloademacs-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.c4
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
3928Empty overlays do not contain any characters, so they are included in the 3928Empty overlays do not contain any characters, so they are included in the
3929result if they are located at BEG, between BEG and END, or at END provided 3929result if they are located at BEG, between BEG and END, or at END provided
3930END denotes the position at the end of the buffer. 3930END denotes the position at the end of the buffer. (If BEG and END are the
3931same buffer position, an empty overlay at BEG will also be at END, but it
3932still qualifies because it's at BEG.)
3931 3933
3932The resulting list of overlays is in an arbitrary unpredictable order. 3934The resulting list of overlays is in an arbitrary unpredictable order.
3933 3935