summaryrefslogtreecommitdiff
path: root/lisp/wdired.el
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2020-10-01 23:25:15 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-10-01 23:34:01 +0200
commit29435ecd8e31497a9cc461fcf88dbbf00876863a (patch)
tree4200cdcff40c604dfaedd52f51c842bb9e26150e /lisp/wdired.el
parentda591df90ae95a6bc34f43b1594fc58a91967304 (diff)
downloademacs-29435ecd8e31497a9cc461fcf88dbbf00876863a.tar.gz
Fix bug in wdired-get-filename
* lisp/wdired.el (wdired-get-filename): Acknowledge the first argument (bug#39280). * test/lisp/wdired-tests.el (wdired-test-bug39280): Add test.
Diffstat (limited to 'lisp/wdired.el')
-rw-r--r--lisp/wdired.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/wdired.el b/lisp/wdired.el
index 6defbf8bc86..806eb304d9f 100644
--- a/lisp/wdired.el
+++ b/lisp/wdired.el
@@ -344,7 +344,7 @@ non-nil means return old filename."
;; Don't unquote the old name, it wasn't quoted in the first place
(and file (setq file (wdired-normalize-filename file (not old)))))
(if (or no-dir old)
- file
+ (if no-dir (file-relative-name file) file)
(and file (> (length file) 0)
(concat (dired-current-directory) file))))))