From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com>
To: Xah <xahlee@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: problem understanding font-lock-defaults structure
Date: Thu, 09 Oct 2008 02:54:10 +0200 [thread overview]
Message-ID: <48ED5632.9050102@gmail.com> (raw)
In-Reply-To: <13173afe-f51c-4c67-b738-1949f2b28b5f@f40g2000pri.googlegroups.com>
Xah wrote:
> On Oct 8, 2:22 pm, Nikolaj Schumacher <m...@nschum.de> wrote:
>> Xah <xah...@gmail.com> wrote:
>>> 2008-01-13
>> ??
>>
>>> After i evaluate the lisp code, i expect, the Sin should be syntax
>>> highlighted but is not.
>> From the doc: "Defaults for Font Lock mode specified by the major mode."
>>
>> Setting this variable only works when you define a new major mode. To
>> add keywords afterwards, use `font-lock-add-keywords'
>>
>>> I'm not sure how many level of list is required, or if the nesting is
>>> optional...
>> Using multiple keywords is optional, i.e. you may leave out the two nils
>> and one level of parentheses. Your nesting and quoting is correct.
>>
>> You might also want to use "\\<Sin\\>" instead of "Sin", etc.
>>
>> regards,
>> Nikolaj Schumacher
>
> Thanks...
>
> am having a headache with this.
>
> ;Why does the following works:
>
> ; Sin[x]^2 + Cos[y]^2 = 1
> ; π^2/6 == Sum[1/x^2,{x,1,∞}]
>
> (setq font-lock-keywords
> (quote
> (
> ("Sin\\|Cos" . font-lock-function-name-face)
> ("π\\|∞" . font-lock-constant-face)
> ("x\\|y" . font-lock-variable-name-face)
> )
> nil
> nil
> )
> )
>
> ;But in the following, i put my keywords into a var, the value of
> myKeywordsLevel1 is just the first element ("Sin\\|Cos" . font-lock-
> function-name-face)?
>
> (setq myKeywordsLevel1
> (quote
> ("Sin\\|Cos" . font-lock-function-name-face)
> ("π\\|∞" . font-lock-constant-face)
> ("x\\|y" . font-lock-variable-name-face)
> )
> )
Could it be that the `quote' just takes one argument?
> (setq font-lock-keywords
> `(
> ,myKeywordsLevel1
> nil
> nil
> )
> )
>
> (font-lock-fontify-buffer)
>
> Xah
> ∑ http://xahlee.org/
>
> ☄
>
next prev parent reply other threads:[~2008-10-09 0:54 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-08 18:46 problem understanding font-lock-defaults structure Xah
2008-10-08 21:22 ` Nikolaj Schumacher
[not found] ` <mailman.619.1223500981.25473.help-gnu-emacs@gnu.org>
2008-10-09 0:02 ` Xah
2008-10-09 0:54 ` Lennart Borgman (gmail) [this message]
2008-10-09 2:25 ` Kevin Rodgers
[not found] ` <mailman.643.1223519147.25473.help-gnu-emacs@gnu.org>
2008-10-09 21:18 ` Xah
2008-10-09 11:13 ` Nikolaj Schumacher
[not found] ` <mailman.637.1223513718.25473.help-gnu-emacs@gnu.org>
2008-10-09 15:04 ` Xah
2008-10-09 15:26 ` harven
2008-10-09 17:17 ` Nikolaj Schumacher
[not found] ` <mailman.677.1223550826.25473.help-gnu-emacs@gnu.org>
2008-10-09 15:29 ` Xah
2008-10-09 17:16 ` Nikolaj Schumacher
[not found] ` <mailman.719.1223572620.25473.help-gnu-emacs@gnu.org>
2008-10-09 21:40 ` Xah
2008-10-09 23:27 ` Nikolaj Schumacher
[not found] ` <mailman.739.1223594868.25473.help-gnu-emacs@gnu.org>
2008-10-10 0:20 ` Xah
2008-10-10 0:45 ` Tim X
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=48ED5632.9050102@gmail.com \
--to=lennart.borgman@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=xahlee@gmail.com \
/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.