From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bob Proulx Newsgroups: gmane.emacs.help Subject: Re: syntax highlighting Date: Sun, 16 Nov 2014 12:31:17 -0700 Message-ID: <20141116122638109739581@bob.proulx.com> References: <43671709-e657-44d7-81c7-36aa6398706f@googlegroups.com> <87389jh93u.fsf@debian.uxu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1416166304 29274 80.91.229.3 (16 Nov 2014 19:31:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Nov 2014 19:31:44 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 16 20:31:38 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Xq5Xu-0002ay-KO for geh-help-gnu-emacs@m.gmane.org; Sun, 16 Nov 2014 20:31:38 +0100 Original-Received: from localhost ([::1]:44875 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xq5Xu-0001ma-5k for geh-help-gnu-emacs@m.gmane.org; Sun, 16 Nov 2014 14:31:38 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51405) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xq5Xf-0001mF-9N for help-gnu-emacs@gnu.org; Sun, 16 Nov 2014 14:31:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xq5Xa-0005L7-GY for help-gnu-emacs@gnu.org; Sun, 16 Nov 2014 14:31:23 -0500 Original-Received: from joseki.proulx.com ([216.17.153.58]:59496) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xq5Xa-0005L1-9x for help-gnu-emacs@gnu.org; Sun, 16 Nov 2014 14:31:18 -0500 Original-Received: from hysteria.proulx.com (hysteria.proulx.com [192.168.230.119]) by joseki.proulx.com (Postfix) with ESMTP id 366FD21229 for ; Sun, 16 Nov 2014 12:31:17 -0700 (MST) Original-Received: by hysteria.proulx.com (Postfix, from userid 1000) id 2A7122DC35; Sun, 16 Nov 2014 12:31:17 -0700 (MST) Mail-Followup-To: help-gnu-emacs@gnu.org Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 216.17.153.58 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:100964 Archived-At: M P wrote: > I would like to turn of syntax highlighting. The screen glows in all > colors of the rainbow - thats is tiring for the eyes, Set this in your .emacs file to disable font-lock-mode globally. (global-font-lock-mode 0) See the documentation on font lock mode for more information. http://www.gnu.org/software/emacs/manual/html_node/emacs/Font-Lock.html#Font-Lock Bob