summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs/skribe.el.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/skribe.el.in b/emacs/skribe.el.in
index e91a6ea..d8ee590 100644
--- a/emacs/skribe.el.in
+++ b/emacs/skribe.el.in
@@ -121,7 +121,12 @@ Set this to nil if you don't want a modeline indicator."
 	 'font-lock-function-name-face)
    (list ",(\\([^ \n()]+\\)"
 	 1
-	 'font-lock-comment-delimiter-face))
+	 'font-lock-comment-delimiter-face)
+   (list ";.*$"
+	 1
+	 'font-lock-comment-face)
+   (list "#;\\(([^)]*)\\|\\[[^\\]]*\\]\\|[a-zA-Z0-9]*\\)" ;; SRFI-62 comments
+	 'font-lock-comment-face))
   "*The Skribe font-lock specification."
   :group 'skribe)