Changeset 4210 for trunk/lisp/paren.el
- Timestamp:
- 2007年06月02日 09時29分41秒 (1 year ago)
- Files:
-
- trunk/lisp/paren.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/paren.el
r4204 r4210 144 144 (dir (cond ((eq (syntax-class (syntax-after (1- (point)))) 5) -1) 145 145 ((eq (syntax-class (syntax-after (point))) 4) 1))) 146 (window-start (window-start))147 146 pos mismatch face) 148 147 ;; … … 249 248 ;; Always set the overlay face, since it varies. 250 249 (overlay-put show-paren-overlay 'priority show-paren-priority) 251 (overlay-put show-paren-overlay 'face face)) 252 ;; If there are continued lines, the above operations can 253 ;; force redisplay to recenter the window (since there is no 254 ;; way for it to know that the overlay changes to the buffer 255 ;; are harmless). So reset the window-start. 256 (unless (window-minibuffer-p) 257 (set-window-start (selected-window) window-start))) 250 (overlay-put show-paren-overlay 'face face))) 258 251 ;; show-paren-mode is nil in this buffer. 259 252 (and show-paren-overlay
