help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Trouble with quotes in comments for mode derived from sql-mode


From: address@hidden
Subject: Trouble with quotes in comments for mode derived from sql-mode
Date: 19 Jan 2006 06:20:41 -0800
User-agent: G2/0.2

Hello,

I've written a very simple derived mode 'isq' mode which adds c++ style
comments
to sql-mode. The problem am having is unbalanced quotes in comments
mess up string
highlighting. I've seen similar problems in this group but haven't
found a solution.

Here's my derived mode:

(define-derived-mode isq-mode sql-mode "ISQ" "Major mode to edit Sybase
ISQ files."
  (setq indent-tabs-mode nil)
  (setq comment-start "// ")
)

(font-lock-add-keywords 'isq-mode '(("\\(--.*\\|//.*\\)$" (0
'font-lock-comment-face t))))
(add-to-list 'auto-mode-alist '(".isq\\'" . isq-mode))

I'm not sure if this is a shortcoming of sql-mode itself or if I'm
missing something.
Any help would be appreciated.

I'm using gnu emacs 21.1.1 on solaris 2.8

-Colin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]