Show
Ignore:
Timestamp:
08/18/06 08:35:31 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/jit-lock.el

    r4140 r4148  
    392392               (run-with-timer 
    393393                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))))))) 
    397398 
    398399           ;; Find the start of the next chunk, if any. 
     
    578579the variables `jit-lock-start' and `jit-lock-end'. 
    579580 
    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'.") 
     581Note that extending the region this way is not strictly necessary, except 
     582that the nature of the redisplay code tends to otherwise leave some of 
     583the rehighlighted text displayed with the old highlight until the next 
     584redisplay (see comment about repeated redisplay in `jit-lock-fontify-now').") 
    584585 
    585586(defun jit-lock-after-change (start end old-len)