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/font-lock.el

    r4140 r4148  
    10891089  (let ((changed nil)) 
    10901090    (goto-char font-lock-beg) 
    1091     (unless (bobp) (setq changed t font-lock-beg (line-beginning-position))) 
     1091    (unless (bolp) (setq changed t font-lock-beg (line-beginning-position))) 
    10921092    (goto-char font-lock-end) 
    1093     (unless (bobp) (setq changed t font-lock-end (line-beginning-position 2))) 
     1093    (unless (bolp) (setq changed t font-lock-end (line-beginning-position 2))) 
    10941094    changed)) 
    10951095