all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: gento <gento_distefano@hotmail.com>
To: help-gnu-emacs@gnu.org
Subject: syntax highlighting for comments
Date: Tue, 8 Sep 2009 01:26:05 -0700 (PDT)	[thread overview]
Message-ID: <42fdb144-4df2-4489-9842-243504e404d0@a7g2000yqo.googlegroups.com> (raw)

Hi All,

I'm using emacs to edit journal text files *.jou, for which commented
lines
start with the character "/".

I apply the comment syntax for the "*.jou" files by adding to
the .emacs file
the lines

(add-hook 'find-file-hooks
 (lambda ()
  (when (string-match "\\.jou$" (buffer-file-name))
   (setq comment-start "/")
  )
 )
)

Now I would also like to turn the text of the commented lines into
red, and for this
I added the line

(font-lock-add-keywords nil '("\\(/.*\\)$" (1 font-lock-comment-
face)))

which unfortunately doesn’t work.

Does anybody know where the mistake is?
Many thanks

gento


             reply	other threads:[~2009-09-08  8:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-08  8:26 gento [this message]
2009-09-15 16:49 ` syntax highlighting for comments bj
2009-09-15 19:03   ` Bruno Barbier
2009-09-17 10:29     ` gento

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=42fdb144-4df2-4489-9842-243504e404d0@a7g2000yqo.googlegroups.com \
    --to=gento_distefano@hotmail.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.