Changeset 4085 for trunk/src/intervals.c
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/src/intervals.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/intervals.c
r4079 r4085 2342 2342 BUFFER; TYPE should be one of `keymap' or `local-map'. Use the map 2343 2343 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. */ 2345 2347 2346 2348 Lisp_Object … … 2354 2356 2355 2357 /* 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)) 2357 2359 abort (); 2358 2360
