1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

(dired-mark-pop-up): Fix last change.

This commit is contained in:
Eli Zaretskii 2001-06-18 06:51:38 +00:00
parent 21e13fe40b
commit 1a0b9ae6bb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-06-18 Eli Zaretskii <eliz@is.elta.co.il>
* dired.el (dired-mark-pop-up): Fix last change.
2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
* calendar/calendar.el (generate-calendar-month): Add help-echo to

View File

@ -2163,7 +2163,8 @@ FILES is the list of marked files."
(with-current-buffer (get-buffer-create bufname)
(erase-buffer)
(dired-format-columns-of-files files)
(remove-text-properties (point-min) (point-max) '(mouse-face help-echo)))
(remove-text-properties (point-min) (point-max)
'(mouse-face nil help-echo nil)))
(save-window-excursion
(dired-pop-to-buffer bufname)
(apply function args))))