From: Tino Calancha <tino.calancha@gmail.com>
To: 27801@debbugs.gnu.org
Subject: bug#27801: 26.0.50; Dired: Use relative file names when DIR-OR-LIST is a cons
Date: Mon, 24 Jul 2017 12:29:48 +0900 [thread overview]
Message-ID: <87o9sacy1f.fsf@calancha-pc> (raw)
Severity: wishlist
emacs -Q /tmp
;; Following form shows the full file name in the Dired buffer.
(let* ((dir source-directory)
(file1 (expand-file-name "lisp/subr.el" dir))
(file2 (expand-file-name "src/data.c" dir)))
(dired (list dir file1 file2)))
;; Usually, Dired just shows the relative file name to
;; 'default-directory'. That is more clear, specially for
;; long file names.
--8<-----------------------------cut here---------------start------------->8---
commit 192c9b0179adbe4ae65d956f064eb9c2197a0a01
Author: Tino Calancha <tino.calancha@gmail.com>
Date: Mon Jul 24 12:25:24 2017 +0900
Dired: Use relative file names when DIR-OR-LIST is a cons
* lisp/dired.el (dired-internal-noselect): Use relative file
names when DIR-OR-LIST is a cons.
* test/lisp/dired-tests.el (dired-test-bug27801): Add test.
diff --git a/lisp/dired.el b/lisp/dired.el
index 9d500a9f52..718c2b8cf9 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -926,6 +926,11 @@ dired-internal-noselect
;; if it was the name of a directory at all.
(file-name-directory dirname))
(or switches (setq switches dired-listing-switches))
+ ;; If `dir-or-list' is a cons, use file names relative
+ ;; to default-directory.
+ (when (and (consp dir-or-list) (file-name-absolute-p (cadr dir-or-list)))
+ (setf (cdr dir-or-list)
+ (mapcar #'file-relative-name (cdr dir-or-list))))
(if mode (funcall mode)
(dired-mode dir-or-list switches))
;; default-directory and dired-actual-switches are set now
diff --git a/test/lisp/dired-tests.el b/test/lisp/dired-tests.el
index 69331457c0..4241609ec6 100644
--- a/test/lisp/dired-tests.el
+++ b/test/lisp/dired-tests.el
@@ -175,5 +175,25 @@
(should (looking-at "src")))
(when (buffer-live-p buf) (kill-buffer buf)))))
+(ert-deftest dired-test-bug27801 ()
+ "Test for http://debbugs.gnu.org/27801 ."
+ (let* ((dir (make-temp-file "bug27801" 'dir))
+ (foo (expand-file-name "foo" dir))
+ (bar (expand-file-name "bar" dir))
+ (f1 (expand-file-name "file" foo))
+ (f2 (expand-file-name "file" bar))
+ buf)
+ (unwind-protect
+ (progn
+ (make-directory foo)
+ (make-directory bar)
+ (with-temp-file f1 nil)
+ (with-temp-file f2 nil)
+ (setq buf (dired (list dir f1 f2)))
+ (dired-goto-file f1)
+ (should (looking-at "foo/file$")))
+ (when (buffer-live-p buf) (kill-buffer buf))
+ (delete-directory dir t))))
+
(provide 'dired-tests)
;; dired-tests.el ends here
--8<-----------------------------cut here---------------end--------------->8---
In GNU Emacs 26.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.11)
of 2017-07-23
Repository revision: 1f450f1d3531cb53ebe50744c85c90141fce7ad0
next reply other threads:[~2017-07-24 3:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-24 3:29 Tino Calancha [this message]
2017-07-24 3:47 ` bug#27801: 26.0.50; Dired: Use relative file names when DIR-OR-LIST is a cons Drew Adams
2017-07-24 4:16 ` Tino Calancha
2017-07-24 5:05 ` Drew Adams
2017-07-24 5:37 ` Tino Calancha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87o9sacy1f.fsf@calancha-pc \
--to=tino.calancha@gmail.com \
--cc=27801@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.