diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/find-dired.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 978889cc10d..7d0567dfb6e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-04-29 Stephen Berman <Stephen.Berman@gmx.net> | ||
| 2 | |||
| 3 | * find-dired.el (find-dired-filter): Propertize all text down to eob. | ||
| 4 | |||
| 1 | 2007-04-29 Richard Stallman <rms@gnu.org> | 5 | 2007-04-29 Richard Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * international/mule.el (auto-coding-alist): Add pdf => no-conversion. | 7 | * international/mule.el (auto-coding-alist): Add pdf => no-conversion. |
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." | |||
| 257 | (delete-region (point) (- (point) 2))) | 257 | (delete-region (point) (- (point) 2))) |
| 258 | ;; Find all the complete lines in the unprocessed | 258 | ;; Find all the complete lines in the unprocessed |
| 259 | ;; output and process it to add text properties. | 259 | ;; output and process it to add text properties. |
| 260 | (goto-char end) | 260 | (goto-char (point-max)) |
| 261 | (if (search-backward "\n" (process-mark proc) t) | 261 | (if (search-backward "\n" (process-mark proc) t) |
| 262 | (progn | 262 | (progn |
| 263 | (dired-insert-set-properties (process-mark proc) | 263 | (dired-insert-set-properties (process-mark proc) |