Display directory when dired-omit-mode
is first enabled
* lisp/dired-x.el (dired-omit-expunge): Display the directory name when 'dired-omit-mode' is first enabled. (Bug#64705)
This commit is contained in:
parent
211ee13fb5
commit
a55ca8073b
1 changed files with 5 additions and 1 deletions
|
@ -491,7 +491,11 @@ status message."
|
|||
(setq count (+ count
|
||||
(dired-do-kill-lines
|
||||
nil
|
||||
(if dired-omit-verbose "Omitted %d line%s" "")
|
||||
(if dired-omit-verbose
|
||||
(format "Omitted %%d line%%s in %s"
|
||||
(abbreviate-file-name
|
||||
dired-directory))
|
||||
"")
|
||||
init-count)))
|
||||
(force-mode-line-update))))
|
||||
;; Try to preserve modified state, so `%*' doesn't appear in
|
||||
|
|
Loading…
Add table
Reference in a new issue