branch: elpa/magit
commit fa60080d686d8d03a0ab2b89203dc9dd9f21789c
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-gitignore-in-subdir: Expand read directory name
---
 lisp/magit-gitignore.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/magit-gitignore.el b/lisp/magit-gitignore.el
index f83ab77b37..44858f71af 100644
--- a/lisp/magit-gitignore.el
+++ b/lisp/magit-gitignore.el
@@ -65,7 +65,8 @@ Prompt the user for a directory and add the rule to the
 tracked, they are shared with other clones of the repository.
 Also stage the file."
   :description "shared in subdirectory (path/to/.gitignore)"
-  (interactive (let ((dir (read-directory-name "Limit rule to files in: ")))
+  (interactive (let ((dir (expand-file-name
+                           (read-directory-name "Limit rule to files in: "))))
                  (list (magit-gitignore-read-pattern dir) dir)))
   (magit--gitignore rule (expand-file-name ".gitignore" directory) t))
 

Reply via email to