aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/scheme.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el
index 1cb71fa773a..66d9ed6fae6 100644
--- a/lisp/progmodes/scheme.el
+++ b/lisp/progmodes/scheme.el
@@ -425,7 +425,7 @@ that variable's value is a string."
425 (eval-when-compile 425 (eval-when-compile
426 (list 426 (list
427 ;; Similar to Scheme 427 ;; Similar to Scheme
428 (list "(\\(define\\(-\\w+\\)?\\)\\>[ ]*\\((?\\)\\(\\sw+\\)\\>" 428 (list "(\\(define\\(-\\w+\\)?\\)\\>[ \t]*\\((?\\)\\(\\sw+\\)\\>"
429 '(1 font-lock-keyword-face) 429 '(1 font-lock-keyword-face)
430 '(4 font-lock-function-name-face)) 430 '(4 font-lock-function-name-face))
431 (cons 431 (cons
@@ -437,10 +437,10 @@ that variable's value is a string."
437 "\\)\\>") 437 "\\)\\>")
438 1) 438 1)
439 ;; DSSSL syntax 439 ;; DSSSL syntax
440 '("(\\(element\\|mode\\|declare-\\w+\\)\\>[ ]*\\(\\sw+\\)" 440 '("(\\(element\\|mode\\|declare-\\w+\\)\\>[ \t]*\\(\\sw+\\)"
441 (1 font-lock-keyword-face) 441 (1 font-lock-keyword-face)
442 (2 font-lock-type-face)) 442 (2 font-lock-type-face))
443 '("(\\(element\\)\\>[ ]*(\\(\\S)+\\))" 443 '("(\\(element\\)\\>[ \t]*(\\(\\S)+\\))"
444 (1 font-lock-keyword-face) 444 (1 font-lock-keyword-face)
445 (2 font-lock-type-face)) 445 (2 font-lock-type-face))
446 '("\\<\\sw+:\\>" . font-lock-constant-face) ; trailing `:' c.f. scheme 446 '("\\<\\sw+:\\>" . font-lock-constant-face) ; trailing `:' c.f. scheme