Changeset 4210 for trunk/lisp/textmodes/fill.el
- Timestamp:
- 06/02/07 09:29:41 (1 year ago)
- Files:
-
- trunk/lisp/textmodes/fill.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/textmodes/fill.el
r4204 r4210 160 160 Remove indentation from each line." 161 161 (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))) 162 167 (let ((end-spc-re (concat "\\(" (sentence-end) "\\) *\\| +"))) 163 168 (save-excursion
