diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-01-27 11:17:56 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-01-27 11:17:56 +0100 |
| commit | 66b9d8e365c55d6a61041a396d69b013c5a84aa2 (patch) | |
| tree | 53820d20fc98a547cd9b5c969df64537aceb2ba8 /lisp/magit-git.el | |
| parent | ed711da6133c21b43a8541c331bdc1847524a379 (diff) | |
magit-ignored-files: No longer use --directory by default
Diffstat (limited to 'lisp/magit-git.el')
| -rw-r--r-- | lisp/magit-git.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/magit-git.el b/lisp/magit-git.el index ebbd3cf..ecce961 100644 --- a/lisp/magit-git.el +++ b/lisp/magit-git.el @@ -1053,8 +1053,8 @@ tracked file." (and (not all) "--exclude-standard") "--" files)) -(defun magit-ignored-files () - (magit-list-files "--others" "--ignored" "--exclude-standard" "--directory")) +(defun magit-ignored-files (&rest args) + (magit-list-files "--others" "--ignored" "--exclude-standard")) (defun magit-modified-files (&optional nomodules files) (magit-git-items "diff-index" "-z" "--name-only" |
