# HG changeset patch # User Markus Rost # Date 1036688701 0 # Node ID d5e00837e437300fd5331a18db0a9fc58f00ba13 # Parent 1ecb81625b1df01d6690bff846682452485a66b8 (grep-compute-defaults): Undo previous change. (grep-command, grep-find-command, grep-tree-command): Allow value nil. Do not declare :get property. (grep-use-null-device): Doc fix. Fix type. Do not declare :get property. diff -r 1ecb81625b1d -r d5e00837e437 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Thu Nov 07 16:52:04 2002 +0000 +++ b/lisp/progmodes/compile.el Thu Nov 07 17:05:01 2002 +0000 @@ -100,8 +100,7 @@ (error nil)) 1) (format "%s %s -e " grep-program required-options) - (format "%s %s " grep-program required-options)))) - (put 'grep-command 'standard-value (list (custom-quote grep-command)))) + (format "%s %s " grep-program required-options))))) (unless grep-find-use-xargs (setq grep-find-use-xargs (if (and @@ -111,9 +110,7 @@ (equal (call-process "xargs" nil nil nil "-0" "-e" "echo") 0)) - 'gnu)) - (put 'grep-find-use-xargs 'standard-value - (list (custom-quote grep-find-use-xargs)))) + 'gnu))) (unless grep-find-command (setq grep-find-command (cond ((eq grep-find-use-xargs 'gnu) @@ -124,9 +121,7 @@ find-program grep-command)) (t (cons (format "%s . -type f -exec %s {} %s \\;" find-program grep-command null-device) - (+ 22 (length grep-command)))))) - (put 'grep-find-command 'standard-value - (list (custom-quote grep-find-command)))) + (+ 22 (length grep-command))))))) (unless grep-tree-command (setq grep-tree-command (let* ((glen (length grep-program)) @@ -138,9 +133,7 @@ (format "%s -type f -print | xargs %s " find-program gcmd)) (t (format "%s -type f -exec %s {} %s \\;" - find-program gcmd null-device))))) - (put 'grep-tree-command 'standard-value - (list (custom-quote grep-tree-command))))) + find-program gcmd null-device))))))) (defcustom grep-command nil "The default grep command for \\[grep]. @@ -150,14 +143,12 @@ The default value of this variable is set up by `grep-compute-defaults'; call that function before using this variable in your program." - :type 'string - :get '(lambda (symbol) - (or grep-command - (progn (grep-compute-defaults) grep-command))) + :type '(choice string + (const :tag "Not Set" nil)) :group 'compilation) (defcustom grep-use-null-device 'auto-detect - "If non-nil, append the value of `null-device' to grep commands. + "If t, append the value of `null-device' to `grep' commands. This is done to ensure that the output of grep includes the filename of any match in the case where only a single file is searched, and is not necessary if the grep program used supports the `-H' option. @@ -165,20 +156,17 @@ The default value of this variable is set up by `grep-compute-defaults'; call that function before using this variable in your program." :type 'boolean - :get '(lambda (symbol) - (if (and grep-use-null-device (not (eq grep-use-null-device t))) - (progn (grep-compute-defaults) grep-use-null-device) - grep-use-null-device)) + :type '(choice (const :tag "Do Not Append Null Device" nil) + (const :tag "Append Null Device" t) + (other :tag "Not Set" auto-detect)) :group 'compilation) (defcustom grep-find-command nil "The default find command for \\[grep-find]. The default value of this variable is set up by `grep-compute-defaults'; call that function before using this variable in your program." - :type 'string - :get (lambda (symbol) - (or grep-find-command - (progn (grep-compute-defaults) grep-find-command))) + :type '(choice string + (const :tag "Not Set" nil)) :group 'compilation) (defcustom grep-tree-command nil @@ -191,11 +179,9 @@ - find options to limit the files matched - place to put -i if case insensitive grep - the regular expression searched for." - :type 'string + :type '(choice string + (const :tag "Not Set" nil)) :version "21.4" - :get (lambda (symbol) - (or grep-tree-command - (progn (grep-compute-defaults) grep-tree-command))) :group 'compilation) (defcustom grep-tree-files-aliases '(