Show
Ignore:
Timestamp:
05/18/06 16:19:18 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/buffer.c

    r4058 r4085  
    24732473   Store in *LEN_PTR the size allocated for the vector. 
    24742474   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
    24762476   Store in *PREV_PTR the previous position before POS where an overlay ends, 
    24772477     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
    24792479   NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info. 
    24802480 
     
    39473947       1, 1, 0, 
    39483948       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).  */) 
     3949If there are no overlay boundaries from POS to (point-max), 
     3950the value is (point-max).  */) 
    39503951     (pos) 
    39513952     Lisp_Object pos; 
     
    39883989       Sprevious_overlay_change, 1, 1, 0, 
    39893990       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).  */) 
     3991If there are no overlay boundaries from (point-min) to POS, 
     3992the value is (point-min).  */) 
    39913993     (pos) 
    39923994     Lisp_Object pos;