]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some compat code from esh-io.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 10:12:02 +0000 (12:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 10:12:02 +0000 (12:12 +0200)
* lisp/eshell/esh-io.el (eshell-set-output-handle): Remove check
for null-device, which is always bound.

lisp/eshell/esh-io.el

index 0aa4ec4d16c48de70dbe28ea8a0f27877cebb205..b4154861908fea799d01fbccbde4bbf3ce3e1cf9 100644 (file)
@@ -382,12 +382,7 @@ it defaults to `insert'."
   "Set handle INDEX, using MODE, to point to TARGET."
   (when target
     (if (and (stringp target)
-            (or (cond
-                 ((boundp 'null-device)
-                  (string= target null-device))
-                 ((boundp 'grep-null-device)
-                  (string= target grep-null-device))
-                 (t nil))
+            (or (string= target null-device)
                 (string= target "/dev/null")))
        (aset eshell-current-handles index nil)
       (let ((where (eshell-get-target target mode))