diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-05-07 01:56:19 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-05-07 01:56:19 +0000 |
commit | 96149b57e36636696c7b519a02bee34f60f75059 (patch) | |
tree | a62e855da940345a79a4473a4dd0708953aebbdb /lisp/dired-aux.el | |
parent | 90c50a024bbb4d3e56368bc35dac02673e2cad24 (diff) | |
download | emacs-96149b57e36636696c7b519a02bee34f60f75059.tar.gz |
(dired-mark-subdir-files): Don't pass any arguments interactively.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 71f9c695971..89ce64a7350 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1733,7 +1733,7 @@ The next char is either \\n, or \\r if DIR is hidden." ;;;###autoload (defun dired-mark-subdir-files () "Mark all files except `.' and `..'." - (interactive "P") + (interactive) (let ((p-min (dired-subdir-min))) (dired-mark-files-in-region p-min (dired-subdir-max)))) |