]> git.eshelyaron.com Git - emacs.git/commitdiff
(turn-on-font-lock): Don't depend on window-system &c.
authorDave Love <fx@gnu.org>
Mon, 24 Jan 2000 22:16:14 +0000 (22:16 +0000)
committerDave Love <fx@gnu.org>
Mon, 24 Jan 2000 22:16:14 +0000 (22:16 +0000)
lisp/font-lock.el

index c0dab76b0c8680866934e383cfceceae721a43fc..cecc933b621b15d5289b21268c2629f17bd66fbc 100644 (file)
@@ -1,6 +1,7 @@
 ;;; font-lock.el --- Electric font lock mode
 
-;; Copyright (C) 1992-1999 Free Software Foundation, Inc.
+;; Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 1999
+;;  Free Software Foundation, Inc.
 
 ;; Author: jwz, then rms, then sm <simon@gnu.org>
 ;; Maintainer: FSF
@@ -729,7 +730,7 @@ buffer local value for `font-lock-defaults', via its mode hook."
 (defun turn-on-font-lock ()
   "Turn on Font Lock mode conditionally.
 Turn on only if the terminal can display it."
-  (when (and (not font-lock-mode) (or window-system (tty-display-color-p)))
+  (unless font-lock-mode
     (font-lock-mode)))
 
 ;;;###autoload