aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman2006-05-17 22:26:51 +0000
committerRichard M. Stallman2006-05-17 22:26:51 +0000
commit624d2678584bd7b1d42b25ab1c617757b74a7c8e (patch)
tree8a7588c3b6a1e2ef06b5ac29718964d4b9706180 /src/buffer.c
parent59767336096a79c54b7c034dc22539c45c8d638d (diff)
downloademacs-624d2678584bd7b1d42b25ab1c617757b74a7c8e.tar.gz
emacs-624d2678584bd7b1d42b25ab1c617757b74a7c8e.zip
(Fprevious_overlay_change, Fnext_overlay_change): Doc fixes.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5ed9043fd0a..c03c58a39f3 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2465,10 +2465,10 @@ swap_out_buffer_local_variables (b)
2465 Return the number found, and store them in a vector in *VEC_PTR. 2465 Return the number found, and store them in a vector in *VEC_PTR.
2466 Store in *LEN_PTR the size allocated for the vector. 2466 Store in *LEN_PTR the size allocated for the vector.
2467 Store in *NEXT_PTR the next position after POS where an overlay starts, 2467 Store in *NEXT_PTR the next position after POS where an overlay starts,
2468 or ZV if there are no more overlays. 2468 or ZV if there are no more overlays between POS and ZV.
2469 Store in *PREV_PTR the previous position before POS where an overlay ends, 2469 Store in *PREV_PTR the previous position before POS where an overlay ends,
2470 or where an overlay starts which ends at or after POS; 2470 or where an overlay starts which ends at or after POS;
2471 or BEGV if there are no such overlays. 2471 or BEGV if there are no such overlays from BEGV to POS.
2472 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info. 2472 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2473 2473
2474 *VEC_PTR and *LEN_PTR should contain a valid vector and size 2474 *VEC_PTR and *LEN_PTR should contain a valid vector and size
@@ -3939,7 +3939,8 @@ or between BEG and END. */)
3939DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change, 3939DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
3940 1, 1, 0, 3940 1, 1, 0,
3941 doc: /* Return the next position after POS where an overlay starts or ends. 3941 doc: /* Return the next position after POS where an overlay starts or ends.
3942If there are no more overlay boundaries after POS, return (point-max). */) 3942If there are no overlay boundaries from POS to (point-max),
3943the value is (point-max). */)
3943 (pos) 3944 (pos)
3944 Lisp_Object pos; 3945 Lisp_Object pos;
3945{ 3946{
@@ -3980,7 +3981,8 @@ If there are no more overlay boundaries after POS, return (point-max). */)
3980DEFUN ("previous-overlay-change", Fprevious_overlay_change, 3981DEFUN ("previous-overlay-change", Fprevious_overlay_change,
3981 Sprevious_overlay_change, 1, 1, 0, 3982 Sprevious_overlay_change, 1, 1, 0,
3982 doc: /* Return the previous position before POS where an overlay starts or ends. 3983 doc: /* Return the previous position before POS where an overlay starts or ends.
3983If there are no more overlay boundaries before POS, return (point-min). */) 3984If there are no overlay boundaries from (point-min) to POS,
3985the value is (point-min). */)
3984 (pos) 3986 (pos)
3985 Lisp_Object pos; 3987 Lisp_Object pos;
3986{ 3988{