]> code.delx.au - gnu-emacs/commitdiff
(grep-null-device): Defined.
authorRichard M. Stallman <rms@gnu.org>
Fri, 16 Jun 1995 04:36:55 +0000 (04:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 16 Jun 1995 04:36:55 +0000 (04:36 +0000)
(grep): Use grep-null-device.

lisp/progmodes/compile.el

index 2d8bc6acd6c8566431cc028af18e5cb1215023ef..4a0890af682ab2a93ebdf5f2272159761791d902 100644 (file)
@@ -298,7 +298,10 @@ to a function that generates a unique name."
   (interactive)
   (save-some-buffers (not compilation-ask-about-save) nil)
   (compile-internal compile-command "No more errors"))
-  
+
+;; The system null device. (Should reference NULL_DEVICE from C.)
+(defvar grep-null-device "/dev/null" "The system null device.")
+
 ;;;###autoload
 (defun grep (command-args)
   "Run grep, with user-specified args, and collect output in a buffer.
@@ -310,7 +313,7 @@ easily repeat a grep command."
   (interactive
    (list (read-from-minibuffer "Run grep (like this): "
                               grep-command nil nil 'grep-history)))
-  (compile-internal (concat command-args " /dev/null")
+  (compile-internal (concat command-args " " grep-null-device)
                    "No more grep hits" "grep"
                    ;; Give it a simpler regexp to match.
                    nil grep-regexp-alist))