diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-22 00:04:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-22 00:04:09 +0000 |
commit | a07e7c4a3aae9b287717777ec6476a88cb986a9b (patch) | |
tree | 20ebd0c99d99ff0c85505d893eb1dd1e7be038d4 /lisp/dired.el | |
parent | 631ffc911ced823dd4e3b270a4c356ff32e6e4a7 (diff) | |
download | emacs-a07e7c4a3aae9b287717777ec6476a88cb986a9b.tar.gz |
(dired-mark-pop-up): Clear mouse-face property.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 47e413c72d8..ba3877683a7 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1668,7 +1668,8 @@ Optional argument means return a file name relative to `default-directory'." (save-excursion (set-buffer (get-buffer-create bufname)) (erase-buffer) - (dired-format-columns-of-files files)) + (dired-format-columns-of-files files) + (remove-text-properties (point-min) (point-max) '(mouse-face))) (save-window-excursion (dired-pop-to-buffer bufname) (apply function args)))) |