diff options
| author | Roland Winkler <winkler@gnu.org> | 2019-06-16 23:02:12 -0500 |
|---|---|---|
| committer | Roland Winkler <winkler@gnu.org> | 2019-06-16 23:02:12 -0500 |
| commit | c0288145895f6addd37ecb6585ffa0f4733b2328 (patch) | |
| tree | 4366b0c083cb640c110c84c569e866a1d2dab6ca | |
| parent | 2815174f100798c6c84f4098dc6eb28336aa951e (diff) | |
| download | emacs-c0288145895f6addd37ecb6585ffa0f4733b2328.tar.gz | |
* find-dired.el (find-dired-refine-function): Fix defcustom.
| -rw-r--r-- | lisp/find-dired.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 2c76179da06..8a283a65c98 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -123,7 +123,8 @@ This function takes no arguments. The *Find* buffer is narrowed to the output of `find' (one file per line) when this function is called." :version "27.1" :group 'find-dired - :type 'function) + :type '(choice (function :tag "Function") + (const :tag "None" nil))) (defvar find-args nil "Last arguments given to `find' by \\[find-dired].") |
