1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-19 18:13:55 +00:00

(scheme-mode-variables): Set font-lock-comment-start-skip.

This commit is contained in:
Glenn Morris 2007-08-18 23:45:58 +00:00
parent bef8366655
commit e8612bf263
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-08-18 Glenn Morris <rgm@gnu.org>
* progmodes/scheme.el (scheme-mode-variables): Set
font-lock-comment-start-skip.
2007-08-18 Martin Rudalics <rudalics@gmx.at>
* progmodes/ada-mode.el (ada-create-syntax-table): Move

View File

@ -156,6 +156,7 @@
;; Look within the line for a ; following an even number of backslashes
;; after either a non-backslash or the line beginning.
(setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+[ \t]*")
(set (make-local-variable 'font-lock-comment-start-skip) ";+ *")
(make-local-variable 'comment-column)
(setq comment-column 40)
(make-local-variable 'parse-sexp-ignore-comments)