From mboxrd@z Thu Jan 1 00:00:00 1970
Path: main.gmane.org!not-for-mail
From: Phillip Lord
Newsgroups: gmane.emacs.help
Subject: Re: Enabling global-font-lock-mode
Date: 24 Oct 2002 16:43:20 +0100
Organization: BIOSCI/MRC Human Genome Mapping Project Resource Centre
Sender: help-gnu-emacs-admin@gnu.org
Message-ID:
References:
NNTP-Posting-Host: main.gmane.org
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Trace: main.gmane.org 1035481339 18387 80.91.224.249 (24 Oct 2002 17:42:19 GMT)
X-Complaints-To: usenet@main.gmane.org
NNTP-Posting-Date: Thu, 24 Oct 2002 17:42:19 +0000 (UTC)
Return-path:
Original-Received: from monty-python.gnu.org ([199.232.76.173])
by main.gmane.org with esmtp (Exim 3.35 #1 (Debian))
id 184lzt-0004mL-00
for ; Thu, 24 Oct 2002 19:42:18 +0200
Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org)
by monty-python.gnu.org with esmtp (Exim 4.10)
id 184lpU-0005hI-00; Thu, 24 Oct 2002 13:31:32 -0400
Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fr.usenet-edu.net!usenet-edu.net!proxad.net!proxad.net!news-hub.cableinet.net!blueyonder!peer.news.eu-x.com!server2.netnews.ja.net!hgmp.mrc.ac.uk!not-for-mail
Original-Newsgroups: gnu.emacs.help
Original-Lines: 20
Original-NNTP-Posting-Host: bromine.hgmp.mrc.ac.uk
Original-X-Trace: niobium.hgmp.mrc.ac.uk 1035474201 24112 193.62.192.35 (24 Oct 2002 15:43:21 GMT)
Original-X-Complaints-To: news@net.bio.net
Original-NNTP-Posting-Date: Thu, 24 Oct 2002 15:43:21 +0000 (UTC)
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2.91
Original-Xref: shelby.stanford.edu gnu.emacs.help:106338
Original-To: help-gnu-emacs@gnu.org
Errors-To: help-gnu-emacs-admin@gnu.org
X-BeenThere: help-gnu-emacs@gnu.org
X-Mailman-Version: 2.0.11
Precedence: bulk
List-Help:
List-Post:
List-Subscribe: ,
List-Id: Users list for the GNU Emacs text editor
List-Unsubscribe: ,
List-Archive:
Xref: main.gmane.org gmane.emacs.help:2891
X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2891
>>>>> "Florian" == Florian Lindner writes:
Florian> Hello, I want to enable Syntax Highlightning (Global font
Florian> lock mode) Using this expression in my .emacs file is
Florian> evaluated without errors but don't take effect. What's
Florian> wrong?
Florian> '(global-font-lock-mode t nil (font-lock))
It's quoted which means "don't evaluate the following".
Try
(global-font-lock-mode t)
Cheers
Phil