emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/grep.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/grep.el
Date: Sat, 03 Jul 2004 06:16:22 -0400

Index: emacs/lisp/progmodes/grep.el
diff -c emacs/lisp/progmodes/grep.el:1.16 emacs/lisp/progmodes/grep.el:1.17
*** emacs/lisp/progmodes/grep.el:1.16   Wed Jun 23 23:10:33 2004
--- emacs/lisp/progmodes/grep.el        Sat Jul  3 10:06:42 2004
***************
*** 74,79 ****
--- 74,80 ----
    :version "21.4"
    :group 'grep)
  
+ ;;;###autoload
  (defcustom grep-command nil
    "The default grep command for \\[grep].
  If the grep program used supports an option to always include file names
***************
*** 100,105 ****
--- 101,107 ----
                 (other :tag "Not Set" auto-detect))
    :group 'grep)
  
+ ;;;###autoload
  (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';
***************
*** 223,228 ****
--- 225,231 ----
  Notice that using \\[next-error] or \\[compile-goto-error] modifies
  `complation-last-buffer' rather than `grep-last-buffer'.")
  
+ ;;;###autoload
  (defvar grep-regexp-alist
    '(("^\\(.+?\\)[:( \t]+\
  \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\
***************
*** 258,263 ****
--- 261,267 ----
     "Additional things to highlight in grep output.
  This gets tacked on the end of the generated expressions.")
  
+ ;;;###autoload
  (defvar grep-program
    ;; Currently zgrep has trouble.  It runs egrep instead of grep,
    ;; and it doesn't pass along long options right.
***************
*** 272,281 ****
--- 276,287 ----
    "The default grep program for `grep-command' and `grep-find-command'.
  This variable's value takes effect when `grep-compute-defaults' is called.")
  
+ ;;;###autoload
  (defvar find-program "find"
    "The default find program for `grep-find-command'.
  This variable's value takes effect when `grep-compute-defaults' is called.")
  
+ ;;;###autoload
  (defvar grep-find-use-xargs nil
    "Whether \\[grep-find] uses the `xargs' utility by default.
  
***************
*** 285,293 ****
--- 291,302 ----
  This variable's value takes effect when `grep-compute-defaults' is called.")
  
  ;; History of grep commands.
+ ;;;###autoload
  (defvar grep-history nil)
+ ;;;###autoload
  (defvar grep-find-history nil)
  
+ ;;;###autoload
  (defun grep-process-setup ()
    "Setup compilation variables and buffer for `grep'.
  Set up `compilation-exit-message-function' and run `grep-setup-hook'."
***************
*** 303,308 ****
--- 312,318 ----
           (cons msg code))))
    (run-hooks 'grep-setup-hook))
  
+ ;;;###autoload
  (defun grep-compute-defaults ()
    (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
      (setq grep-use-null-device
***************
*** 448,453 ****
--- 458,464 ----
         grep-regexp-alist))
  
  ;; This is a copy of find-tag-default from etags.el.
+ ;;;###autoload
  (defun grep-tag-default ()
    (save-excursion
      (while (looking-at "\\sw\\|\\s_")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]