]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-highlight): Use display-color-p.
authorDave Love <fx@gnu.org>
Sun, 12 Mar 2000 14:42:58 +0000 (14:42 +0000)
committerDave Love <fx@gnu.org>
Sun, 12 Mar 2000 14:42:58 +0000 (14:42 +0000)
lisp/isearch.el

index 2682e9f0b9e743fd1eefabd38ee13b45e8971421..0a3b0e26bdb3124c1fb915fd259731c46ac8448f 100644 (file)
@@ -1699,7 +1699,7 @@ If there is no completion possible, say so and continue searching."
 (defvar isearch-overlay nil)
 
 (defun isearch-highlight (beg end)
-  (if (or (null search-highlight) (null window-system))
+  (if (or (null search-highlight) (null (display-color-p)))
       nil
     (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
     (move-overlay isearch-overlay beg end (current-buffer))