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/intervals.c

    r4079 r4085  
    23422342   BUFFER; TYPE should be one of `keymap' or `local-map'.  Use the map 
    23432343   specified by the PROP property, if any.  Otherwise, if TYPE is 
    2344    `local-map' use BUFFER's local map.  */ 
     2344   `local-map' use BUFFER's local map. 
     2345 
     2346   POSITION must be in the accessible part of BUFFER.  */ 
    23452347 
    23462348Lisp_Object 
     
    23542356 
    23552357  /* Perhaps we should just change `position' to the limit.  */ 
    2356   if (position > BUF_Z (buffer) || position < BUF_BEG (buffer)) 
     2358  if (position > BUF_ZV (buffer) || position < BUF_BEGV (buffer)) 
    23572359    abort (); 
    23582360