mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-03 10:53:23 +00:00
* lisp/dired-x.el (dired-omit-expunge): Escape '%' (bug#75877).
This commit is contained in:
parent
85113fcda9
commit
bfc8540da4
1 changed files with 4 additions and 2 deletions
|
@ -498,8 +498,10 @@ status message."
|
||||||
nil
|
nil
|
||||||
(if dired-omit-verbose
|
(if dired-omit-verbose
|
||||||
(format "Omitted %%d line%%s in %s"
|
(format "Omitted %%d line%%s in %s"
|
||||||
(abbreviate-file-name
|
(replace-regexp-in-string
|
||||||
dired-directory))
|
"%" "%%"
|
||||||
|
(abbreviate-file-name
|
||||||
|
dired-directory)))
|
||||||
"")
|
"")
|
||||||
init-count)))
|
init-count)))
|
||||||
(force-mode-line-update))))
|
(force-mode-line-update))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue