diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-21 04:19:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-21 04:19:19 +0000 |
commit | 99e5283f4f5ef7da920f31dca0007095947057fd (patch) | |
tree | 5532c26b89594e2a0802f1ca46ef9431faed1f7f /lisp/isearch.el | |
parent | 114f9f3236aaf70cf3ecd5c8e1ab27b65de3712c (diff) | |
download | emacs-99e5283f4f5ef7da920f31dca0007095947057fd.tar.gz |
(isearch-highlight): Do nothing if not window-system.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 4 |
1 files 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 <liberte@cs.uiuc.edu> -;; |$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)) |