diff options
author | Andreas Schwab <schwab@suse.de> | 1998-01-07 10:31:09 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-01-07 10:31:09 +0000 |
commit | c3b00a9aa7d649d991fd0e980930ba2995e8dbc0 (patch) | |
tree | 20fb2c73ba4465ceed002d56f994ce885453bff2 /lisp/find-dired.el | |
parent | 58c59b232b1fd07c8da9a0543c693f1c48219957 (diff) | |
download | emacs-c3b00a9aa7d649d991fd0e980930ba2995e8dbc0.tar.gz |
Customized.
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r-- | lisp/find-dired.el | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index daa610af18a..502a93c1c74 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -27,25 +27,36 @@ (require 'dired) +(defgroup find-dired nil + "Run a `find' command and dired the output." + :group 'dired + :prefix "find-") + ;; find's -ls corresponds to these switches. ;; Note -b, at least GNU find quotes spaces etc. in filenames ;;;###autoload -(defvar find-ls-option (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") - '("-exec ls -ld {} \\;" . "-ld")) +(defcustom find-ls-option + (if (eq system-type 'berkeley-unix) '("-ls" . "-gilsb") + '("-exec ls -ld {} \\;" . "-ld")) "*Description of the option to `find' to produce an `ls -l'-type listing. This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION gives the option (or options) to `find' that produce the desired output. -LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") +LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output." + :type '(cons (string :tag "Find Option") + (string :tag "Ls Switches")) + :group 'find-dired) ;;;###autoload -(defvar find-grep-options +(defcustom find-grep-options (if (or (eq system-type 'berkeley-unix) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q") "*Option to grep to be as silent as possible. On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. -On other systems, the closest you can come is to use `-l'.") +On other systems, the closest you can come is to use `-l'." + :type 'string + :group 'find-dired) (defvar find-args nil "Last arguments given to `find' by \\[find-dired].") |