From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: sml mode in emacs Date: Fri, 29 Oct 2004 17:21:46 -0600 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <2ug1keF2a61ooU1@uni-berlin.de> References: <2uf51aF2981j4U1@uni-berlin.de> <2uf7biF29v5ujU1@uni-berlin.de> <2ufct5F28h5h6U1@uni-berlin.de> <2ufj48F2agrqgU1@uni-berlin.de> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1099092138 18054 80.91.229.6 (29 Oct 2004 23:22:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 29 Oct 2004 23:22:18 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Oct 30 01:22:15 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CNg4V-0001C1-00 for ; Sat, 30 Oct 2004 01:22:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CNgCN-00076f-Gm for geh-help-gnu-emacs@m.gmane.org; Fri, 29 Oct 2004 19:30:23 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsmi-eu.news.garr.it!NewsITBone-GARR!fu-berlin.de!uni-berlin.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-X-Trace: news.uni-berlin.de ihD0CSWCNh0rByyIDtltEQGO+B8BUN3gK5JVPIYy01eVP7dhI= User-Agent: Mozilla Thunderbird 0.8 (X11/20040916) X-Accept-Language: en-us, en In-Reply-To: Original-Xref: shelby.stanford.edu gnu.emacs.help:126231 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 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 Xref: main.gmane.org gmane.emacs.help:21612 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:21612 JS wrote: > I already have a line: > > (global-font-lock-mode t) in my .emacs file but there is still no > colors! I both have it above my sml settings and in my sml settings. ,----[ C-h f global-font-lock-mode RET ] | global-font-lock-mode is an interactive compiled Lisp function in `font-lock'. | (global-font-lock-mode &optional ARG DUMMY) | | Toggle Font-Lock mode in every buffer. | With prefix ARG, turn Global-Font-Lock mode on if and only if ARG is positive. | Font-Lock mode is actually not turned on in every buffer but only in those | in which `turn-on-font-lock-if-enabled' turns it on. `---- The symbol t is not a positive number. Try (global-font-lock-mode 1) or just (turn-on-font-lock). -- Kevin Rodgers