diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-04-29 21:10:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-04-29 21:10:46 +0000 |
commit | ece59c464160414936e4e1f0afc8e73b19fbac8f (patch) | |
tree | 75a1ce5806fc9f81663f80ad9d759747006e2136 /lisp/find-dired.el | |
parent | eeadde03401482915ff1916f39b14738d7fde98c (diff) | |
download | emacs-ece59c464160414936e4e1f0afc8e73b19fbac8f.tar.gz |
(find-dired-filter): Propertize all text down to eob.
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r-- | lisp/find-dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 4b70a71bdb8..47655129e29 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -257,7 +257,7 @@ Thus ARG can also contain additional grep options." (delete-region (point) (- (point) 2))) ;; Find all the complete lines in the unprocessed ;; output and process it to add text properties. - (goto-char end) + (goto-char (point-max)) (if (search-backward "\n" (process-mark proc) t) (progn (dired-insert-set-properties (process-mark proc) |