aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2006-12-15 12:12:49 +0000
committerEli Zaretskii2006-12-15 12:12:49 +0000
commitd71826c43f9b72dc9110bb23ebee822f5f73adcb (patch)
tree7b3a972679b760483ca04d90931b1fac44549124
parentb986d62674c4383fd3b546df0c24aaa722667e3f (diff)
downloademacs-d71826c43f9b72dc9110bb23ebee822f5f73adcb.tar.gz
emacs-d71826c43f9b72dc9110bb23ebee822f5f73adcb.zip
(c-font-lock-declarations): Fix previous change.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/cc-fonts.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f2a7d3629d1..9bfba1b26f5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-12-15 Simon Marshall <simon@gnu.org>
2
3 * progmodes/cc-fonts.el (c-font-lock-declarations): Fix previous
4 change.
5
12006-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62006-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * term/mac-win.el (mac-atsu-font-table): Remove defvar. 8 * term/mac-win.el (mac-atsu-font-table): Remove defvar.
diff --git a/lisp/progmodes/cc-fonts.el b/lisp/progmodes/cc-fonts.el
index 8473eee90a2..ab31fa877f7 100644
--- a/lisp/progmodes/cc-fonts.el
+++ b/lisp/progmodes/cc-fonts.el
@@ -1179,7 +1179,7 @@ casts and declarations are fontified. Used on level 2 and higher."
1179 ;; The below code attempts to fontify the case constants in 1179 ;; The below code attempts to fontify the case constants in
1180 ;; c-label-face-name, but it cannot catch every case [sic]. 1180 ;; c-label-face-name, but it cannot catch every case [sic].
1181 ;; And do we want to fontify case constants anyway? 1181 ;; And do we want to fontify case constants anyway?
1182 nil 1182 (c-forward-label t match-pos nil)
1183;;; (when (c-forward-label t match-pos nil) 1183;;; (when (c-forward-label t match-pos nil)
1184;;; ;; Can't use `c-fontify-types-and-refs' here since we 1184;;; ;; Can't use `c-fontify-types-and-refs' here since we
1185;;; ;; should use the label face. 1185;;; ;; should use the label face.