Mercurial > emacs
comparison lisp/font-lock.el @ 23826:f4646c30800a
wrap java-minor-types in java-font-lock-keywords-2.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Mon, 07 Dec 1998 10:54:47 +0000 |
parents | 3fdde7281f9b |
children | c6bfff41f2b5 |
comparison
equal
deleted
inserted
replaced
23825:085b163b6115 | 23826:f4646c30800a |
---|---|
2818 (setq java-font-lock-keywords-2 | 2818 (setq java-font-lock-keywords-2 |
2819 (append java-font-lock-keywords-1 | 2819 (append java-font-lock-keywords-1 |
2820 (list | 2820 (list |
2821 ;; | 2821 ;; |
2822 ;; Fontify all builtin type specifiers. | 2822 ;; Fontify all builtin type specifiers. |
2823 (cons (concat "\\<" java-minor-types "\\>") 'font-lock-type-face) | 2823 (cons (concat "\\<\\(" java-minor-types "\\)\\>") 'font-lock-type-face) |
2824 ;; | 2824 ;; |
2825 ;; Fontify all builtin keywords (except below). | 2825 ;; Fontify all builtin keywords (except below). |
2826 (concat "\\<\\(" java-keywords "\\|" java-major-types "\\)\\>") | 2826 (concat "\\<\\(" java-keywords "\\|" java-major-types "\\)\\>") |
2827 ;; | 2827 ;; |
2828 ;; Fontify keywords and targets, and case default/goto tags. | 2828 ;; Fontify keywords and targets, and case default/goto tags. |