Show
Ignore:
Timestamp:
06/02/07 09:29:41 (1 year ago)
Author:
miyoshi
Message:

Sync up with Emacs_22_BASE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/textmodes/fill.el

    r4204 r4210  
    160160Remove indentation from each line." 
    161161  (interactive "*r") 
     162  ;; Ideally, we'd want to scan the text from the end, so that changes to 
     163  ;; text don't affect the boundary, but the regexp we match against does 
     164  ;; not match as eagerly when matching backward, so we instead use 
     165  ;; a marker. 
     166  (unless (markerp end) (setq end (copy-marker end t))) 
    162167  (let ((end-spc-re (concat "\\(" (sentence-end) "\\) *\\|  +"))) 
    163168    (save-excursion