Changeset 4148 for trunk/lisp/jit-lock.el
- Timestamp:
- 08/18/06 08:35:31 (2 years ago)
- Files:
-
- trunk/lisp/jit-lock.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/jit-lock.el
r4140 r4148 392 392 (run-with-timer 393 393 0 nil (lambda () 394 (with-buffer-prepared-for-jit-lock 395 (put-text-property start orig-start 396 'fontified t buf)))))) 394 (with-current-buffer buf 395 (with-buffer-prepared-for-jit-lock 396 (put-text-property start orig-start 397 'fontified t))))))) 397 398 398 399 ;; Find the start of the next chunk, if any. … … 578 579 the variables `jit-lock-start' and `jit-lock-end'. 579 580 580 Note that extending the region this way is not strictly necessary, 581 except that the nature of the redisplay code tends to otherwise leave 582 some of the rehighlighted text displayed with the old highlight until the 583 next redisplay. See comment in `jit-lock-fontify-now'.")581 Note that extending the region this way is not strictly necessary, except 582 that the nature of the redisplay code tends to otherwise leave some of 583 the rehighlighted text displayed with the old highlight until the next 584 redisplay (see comment about repeated redisplay in `jit-lock-fontify-now').") 584 585 585 586 (defun jit-lock-after-change (start end old-len)
