On 2/9/06, Reed Sheridan <[EMAIL PROTECTED]> wrote:
> Having just given up on this myself, I thought I'd ask if anyone out there
> has managed to make Emacs think that #<<EOF .. EOF is a comment? Or failing
> that, is there at least a way to "comment out" a region so that Emacs thinks
> it's a comment, but Chicken doesn't? The EOF syntax doesn't play nicely
> with paredit mode as is.
Have you tried about mmm-mode? I'm not an mmm-mode expert, but it
should allow you to tread the EOF block with a different mode.
Here's a sample config from my .emacs file. I use it to add CSS and JS
handling within XHTML files.
(require 'mmm-mode)
(mmm-add-mode-ext-class nil "\\.xml" 'xhtml-css)
(mmm-add-mode-ext-class nil "\\.xml" 'xhtml-js)
(mmm-add-classes
'((xhtml-css
:submode css-mode
:front "type=\"text/css\">"
:back "</style>")
(xhtml-js
:submode c-mode
:front "type=\"text/javascript\">"
:back "</script>")))
_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users