aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 3008583b491..038c5aee4bb 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1894,7 +1894,8 @@ DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
1894 1894
1895DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change, 1895DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
1896 1, 1, 0, 1896 1, 1, 0,
1897 "Return the next position after POS where an overlay starts or ends.") 1897 "Return the next position after POS where an overlay starts or ends.\n\
1898If there are no more overlay boundaries after POS, return (point-max).")
1898 (pos) 1899 (pos)
1899 Lisp_Object pos; 1900 Lisp_Object pos;
1900{ 1901{
@@ -1937,7 +1938,7 @@ DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
1937DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0, 1938DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
1938 "Return a pair of lists giving all the overlays of the current buffer.\n\ 1939 "Return a pair of lists giving all the overlays of the current buffer.\n\
1939The car has all the overlays before the overlay center;\n\ 1940The car has all the overlays before the overlay center;\n\
1940the cdr has all the overlays before the overlay center.\n\ 1941the cdr has all the overlays after the overlay center.\n\
1941Recentering overlays moves overlays between these lists.\n\ 1942Recentering overlays moves overlays between these lists.\n\
1942The lists you get are copies, so that changing them has no effect.\n\ 1943The lists you get are copies, so that changing them has no effect.\n\
1943However, the overlays you get are the real objects that the buffer uses.") 1944However, the overlays you get are the real objects that the buffer uses.")