diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-12 10:30:08 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-12 10:30:08 -0400 |
commit | 418f655bfaee62e8a371437c7a442a1d08c4c34f (patch) | |
tree | 682f9130b3e9a34c72a18cd9f1ecf4d3a7845ae9 /src | |
parent | e05a4f5bc55f825145a8795c682f475d735eafc4 (diff) |
Get type definitions font-locking again
Diffstat (limited to 'src')
-rw-r--r-- | src/elisp/urweb-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elisp/urweb-mode.el b/src/elisp/urweb-mode.el index b5e0527d..626fdc63 100644 --- a/src/elisp/urweb-mode.el +++ b/src/elisp/urweb-mode.el @@ -164,10 +164,10 @@ See doc for the variable `urweb-mode-info'." `(;;(urweb-font-comments-and-strings) (,(concat "\\<\\(fun\\|and\\)\\s-+\\(\\sw+\\)\\s-+[^ \t\n=]") (1 font-lock-keyword-face) - (6 font-lock-function-name-face)) + (5 font-lock-function-name-face)) (,(concat "\\<\\(\\(data\\)?type\\|con\\)\\s-+\\(\\sw+\\)") (1 font-lock-keyword-face) - (7 font-lock-type-def-face)) + (3 font-lock-type-def-face)) ("\\<\\(val\\)\\s-+\\(\\sw+\\>\\s-*\\)?\\(\\sw+\\)\\s-*[=:]" (1 font-lock-keyword-face) (3 font-lock-variable-name-face)) |