all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nikolaj Schumacher <me@nschum.de>
To: Davin Pearson <davin.pearson@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Trying to disable the fontification of strings in fundamental-mode
Date: Fri, 12 Sep 2008 10:57:10 +0200	[thread overview]
Message-ID: <m263p1vj15.fsf@nschum.de> (raw)
In-Reply-To: <18fb6c75-7414-4372-8626-3b6e46f3580b@e39g2000hsf.googlegroups.com> (Davin Pearson's message of "Thu\, 11 Sep 2008 21\:30\:55 -0700 \(PDT\)")

Davin Pearson <davin.pearson@gmail.com> wrote:

> What do I need to do to restrict the suppressing of the fontification
> of strings to just fundamental mode?

First of all, don't use advice for this!  Use hooks, which are cleaner
and safer.

Second of all, setq changes the variable globally, so naturally it is
disabled everywhere.  You need to make the variable buffer-local.

(defun my-fundamental-mode-hook ()
  (set (make-variable-buffer-local 'font-lock-string-face) nil))

(add-hook 'fundamental-mode-hook 'my-fundamental-mode-hook)

regards,
Nikolaj Schumacher




  reply	other threads:[~2008-09-12  8:57 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-12  4:30 Trying to disable the fontification of strings in fundamental-mode Davin Pearson
2008-09-12  8:57 ` Nikolaj Schumacher [this message]
     [not found] ` <mailman.19100.1221209839.18990.help-gnu-emacs@gnu.org>
2008-09-13  2:48   ` Davin Pearson
2008-09-13  2:57     ` Davin Pearson
2008-09-14 22:54       ` Nikolaj Schumacher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m263p1vj15.fsf@nschum.de \
    --to=me@nschum.de \
    --cc=davin.pearson@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.