comparison src/buffer.c @ 7492:4ba64e05dad6

(Foverlay_lists): Doc fix. (Fnext_overlay_change): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Fri, 13 May 1994 22:21:45 +0000
parents 35657813817c
children 6cc6328992d6
comparison
equal deleted inserted replaced
7491:621c162a80db 7492:4ba64e05dad6
1892 return result; 1892 return result;
1893 } 1893 }
1894 1894
1895 DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change, 1895 DEFUN ("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\
1898 If 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 {
1901 int noverlays; 1902 int noverlays;
1902 int endpos; 1903 int endpos;
1935 /* These functions are for debugging overlays. */ 1936 /* These functions are for debugging overlays. */
1936 1937
1937 DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0, 1938 DEFUN ("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\
1939 The car has all the overlays before the overlay center;\n\ 1940 The car has all the overlays before the overlay center;\n\
1940 the cdr has all the overlays before the overlay center.\n\ 1941 the cdr has all the overlays after the overlay center.\n\
1941 Recentering overlays moves overlays between these lists.\n\ 1942 Recentering overlays moves overlays between these lists.\n\
1942 The lists you get are copies, so that changing them has no effect.\n\ 1943 The lists you get are copies, so that changing them has no effect.\n\
1943 However, the overlays you get are the real objects that the buffer uses.") 1944 However, the overlays you get are the real objects that the buffer uses.")
1944 () 1945 ()
1945 { 1946 {