Changeset 4085 for trunk/src/buffer.c
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/src/buffer.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/buffer.c
r4058 r4085 2473 2473 Store in *LEN_PTR the size allocated for the vector. 2474 2474 Store in *NEXT_PTR the next position after POS where an overlay starts, 2475 or ZV if there are no more overlays .2475 or ZV if there are no more overlays between POS and ZV. 2476 2476 Store in *PREV_PTR the previous position before POS where an overlay ends, 2477 2477 or where an overlay starts which ends at or after POS; 2478 or BEGV if there are no such overlays .2478 or BEGV if there are no such overlays from BEGV to POS. 2479 2479 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info. 2480 2480 … … 3947 3947 1, 1, 0, 3948 3948 doc: /* Return the next position after POS where an overlay starts or ends. 3949 If there are no more overlay boundaries after POS, return (point-max). */) 3949 If there are no overlay boundaries from POS to (point-max), 3950 the value is (point-max). */) 3950 3951 (pos) 3951 3952 Lisp_Object pos; … … 3988 3989 Sprevious_overlay_change, 1, 1, 0, 3989 3990 doc: /* Return the previous position before POS where an overlay starts or ends. 3990 If there are no more overlay boundaries before POS, return (point-min). */) 3991 If there are no overlay boundaries from (point-min) to POS, 3992 the value is (point-min). */) 3991 3993 (pos) 3992 3994 Lisp_Object pos;
