From f5f6a944dca089fef3039c410ba77def602c3742 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 21 Jan 1994 04:19:19 +0000 Subject: [PATCH] (isearch-highlight): Do nothing if not window-system. --- lisp/isearch.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/isearch.el b/lisp/isearch.el index 11f829c3af5..c124942ee69 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -4,7 +4,7 @@ ;; Author: Daniel LaLiberte -;; |$Date: 1994/01/16 23:40:50 $|$Revision: 1.62 $ +;; |$Date: 1994/01/19 18:45:34 $|$Revision: 1.63 $ ;; This file is part of GNU Emacs. @@ -1360,7 +1360,7 @@ If there is no completion possible, say so and continue searching." (defvar isearch-overlay nil) (defun isearch-highlight (beg end) - (if (null search-highlight) + (if (or (null search-highlight) (null window-system)) nil (or isearch-overlay (setq isearch-overlay (make-overlay beg end))) (move-overlay isearch-overlay beg end (current-buffer)) -- 2.39.5