all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* fontification question
@ 2008-01-17 20:14 JRancier
  2008-01-17 22:51 ` Lennart Borgman (gmail)
  0 siblings, 1 reply; 6+ messages in thread
From: JRancier @ 2008-01-17 20:14 UTC (permalink / raw)
  To: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 560 bytes --]

Given the following code:

(setq font-lock-todo-face (make-face 'font-lock-todo-face))
(set-face-foreground 'font-lock-todo-face "Red")
(set-face-background 'font-lock-todo-face "Yellow")

(font-lock-add-keywords 'jde-mode
                        '(("\\(TODO:.*$\\)" 1 font-lock-todo-face 
prepend)))

Can anyone tell me why the following is correctly fontified (in jde-mode):

    /*
     *
     *  TODO: REMOVE DEBUG STATEMENTS 
     * 
     */

And this isn't?

    /** 01-17-08  jbr
     *
     *  TODO: REMOVE DEBUG STATEMENTS 
     * 
     */

TIA,
Jeff

[-- Attachment #1.2: Type: text/html, Size: 1697 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fontification question
  2008-01-17 20:14 fontification question JRancier
@ 2008-01-17 22:51 ` Lennart Borgman (gmail)
  2008-01-18 13:34   ` JRancier
  0 siblings, 1 reply; 6+ messages in thread
From: Lennart Borgman (gmail) @ 2008-01-17 22:51 UTC (permalink / raw)
  To: JRancier; +Cc: help-gnu-emacs

JRancier@penntraffic.com wrote:
> 
> Given the following code:
> 
> (setq font-lock-todo-face (make-face 'font-lock-todo-face))
> (set-face-foreground 'font-lock-todo-face "Red")
> (set-face-background 'font-lock-todo-face "Yellow")
> 
> (font-lock-add-keywords 'jde-mode
>                         '(("\\(TODO:.*$\\)" 1 font-lock-todo-face 
> prepend)))
> 
> Can anyone tell me why the following is correctly fontified (in jde-mode):
> 
>     /*
>      *
>      *  TODO: REMOVE DEBUG STATEMENTS
>      *
>      */
> 
> And this isn't?
> 
>     /** 01-17-08  jbr
>      *
>      *  TODO: REMOVE DEBUG STATEMENTS
>      *
>      */
> 
> TIA,
> Jeff


I am surprised that the first one works. Should it really do that?

Perhaps you can use hi-lock-mode?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fontification question
  2008-01-17 22:51 ` Lennart Borgman (gmail)
@ 2008-01-18 13:34   ` JRancier
  0 siblings, 0 replies; 6+ messages in thread
From: JRancier @ 2008-01-18 13:34 UTC (permalink / raw)
  To: Lennart Borgman (gmail); +Cc: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 1064 bytes --]

"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> wrote on 01/17/2008 
05:51:49 PM:

| JRancier@penntraffic.com wrote:
| > 
| > Given the following code:
| > 
| > (setq font-lock-todo-face (make-face 'font-lock-todo-face))
| > (set-face-foreground 'font-lock-todo-face "Red")
| > (set-face-background 'font-lock-todo-face "Yellow")
| > 
| > (font-lock-add-keywords 'jde-mode
| >                         '(("\\(TODO:.*$\\)" 1 font-lock-todo-face 
| > prepend)))
| > 
| > Can anyone tell me why the following is correctly fontified (in 
jde-mode):
| > 
| >     /*
| >      *
| >      *  TODO: REMOVE DEBUG STATEMENTS
| >      *
| >      */
| > 
| > And this isn't?
| > 
| >     /** 01-17-08  jbr
| >      *
| >      *  TODO: REMOVE DEBUG STATEMENTS
| >      *
| >      */
| > 
| > TIA,
| > Jeff
| 
| 
| I am surprised that the first one works. Should it really do that?

It does.  Can you clue me into why is 'shouldn't' work?  The interesting 
thing is that in lisp-mode and c-mode, it seems to always work fine ... 
???

| 
| Perhaps you can use hi-lock-mode?

[-- Attachment #1.2: Type: text/html, Size: 1670 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fontification question
       [not found] <4790FF74.3050601@gmail.com>
@ 2008-01-18 19:57 ` JRancier
  2008-01-18 20:16   ` Lennart Borgman (gmail)
  0 siblings, 1 reply; 6+ messages in thread
From: JRancier @ 2008-01-18 19:57 UTC (permalink / raw)
  To: Lennart Borgman (gmail); +Cc: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 1525 bytes --]

"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> wrote on 01/18/2008 
02:35:16 PM:

| JRancier@penntraffic.com wrote:
| > 
| > "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> wrote on 
| > 01/17/2008 05:51:49 PM:
| > 
| > | JRancier@penntraffic.com wrote:
| > | >
| > | > Given the following code:
| > | >
| > | > (setq font-lock-todo-face (make-face 'font-lock-todo-face))
| > | > (set-face-foreground 'font-lock-todo-face "Red")
| > | > (set-face-background 'font-lock-todo-face "Yellow")
| > | >
| > | > (font-lock-add-keywords 'jde-mode
| > | >                         '(("\\(TODO:.*$\\)" 1 font-lock-todo-face
| > | > prepend)))
| > | >
| > | > Can anyone tell me why the following is correctly fontified (in 
| > jde-mode):
| > | >
| > | >     /*
| > | >      *
| > | >      *  TODO: REMOVE DEBUG STATEMENTS
| > | >      *
| > | >      */
| > | >
| > | > And this isn't?
| > | >
| > | >     /** 01-17-08  jbr
| > | >      *
| > | >      *  TODO: REMOVE DEBUG STATEMENTS
| > | >      *
| > | >      */
| > | >
| > | > TIA,
| > | > Jeff
| > |
| > |
| > | I am surprised that the first one works. Should it really do that?
| > 
| > It does.  Can you clue me into why is 'shouldn't' work?  The 
interesting 
| > thing is that in lisp-mode and c-mode, it seems to always work fine 
... ???
| 
| 
| I must have done something stupid, please ignore my answer.

That's quite alright, you have any idea why one works and the other 
doesn't?  After playing around a bit, the two '*' in a row seem to cause 
it to fail?

[-- Attachment #1.2: Type: text/html, Size: 2277 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fontification question
  2008-01-18 19:57 ` JRancier
@ 2008-01-18 20:16   ` Lennart Borgman (gmail)
  2008-01-18 20:23     ` JRancier
  0 siblings, 1 reply; 6+ messages in thread
From: Lennart Borgman (gmail) @ 2008-01-18 20:16 UTC (permalink / raw)
  To: JRancier; +Cc: help-gnu-emacs

> That's quite alright, you have any idea why one works and the other 
> doesn't?  After playing around a bit, the two '*' in a row seem to cause 
> it to fail?

Fontification is quite tricky, especially the comments. It looks like a 
bug too me. If you are using a recent Emacs then you should perhaps file 
a bug report?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fontification question
  2008-01-18 20:16   ` Lennart Borgman (gmail)
@ 2008-01-18 20:23     ` JRancier
  0 siblings, 0 replies; 6+ messages in thread
From: JRancier @ 2008-01-18 20:23 UTC (permalink / raw)
  To: Lennart Borgman (gmail); +Cc: help-gnu-emacs


[-- Attachment #1.1: Type: text/plain, Size: 803 bytes --]

"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> wrote on 01/18/2008 
03:16:02 PM:

| > That's quite alright, you have any idea why one works and the other 
| > doesn't?  After playing around a bit, the two '*' in a row seem to 
cause 
| > it to fail?
| 
| Fontification is quite tricky, especially the comments. It looks like a 
| bug too me. If you are using a recent Emacs then you should perhaps file 

| a bug report?

Not a problem, as long as someone can verify my syntax is OK.  Here's the 
snippet again:

(setq font-lock-todo-face (make-face 'font-lock-todo-face))
(set-face-foreground 'font-lock-todo-face "Red")
(set-face-background 'font-lock-todo-face "Yellow")

(font-lock-add-keywords 'jde-mode
                        '(("\\<\\(TODO:.*$\\)" 1 font-lock-todo-face 
prepend)))


Jeff

[-- Attachment #1.2: Type: text/html, Size: 1243 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-01-18 20:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-17 20:14 fontification question JRancier
2008-01-17 22:51 ` Lennart Borgman (gmail)
2008-01-18 13:34   ` JRancier
     [not found] <4790FF74.3050601@gmail.com>
2008-01-18 19:57 ` JRancier
2008-01-18 20:16   ` Lennart Borgman (gmail)
2008-01-18 20:23     ` JRancier

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.