aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-21 22:47:15 +0000
committerGerd Moellmann2001-10-21 22:47:15 +0000
commit0480815792123186192bb40ad718dbb0b68b1bea (patch)
tree937b8d91c3aa01a2f54b1dd233efcd6eda13c0fb
parent98515cf03bb90245f75b9b8267aaf76677ea7948 (diff)
downloademacs-0480815792123186192bb40ad718dbb0b68b1bea.tar.gz
emacs-0480815792123186192bb40ad718dbb0b68b1bea.zip
(cwarn-font-lock-feature-keywords-alist):
Use `sexp' for :value-type instead of `face'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/cwarn.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5a288ab3bf7..390d989c5f6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-10-22 Gerd Moellmann <gerd@gnu.org>
2
3 * progmodes/cwarn.el (cwarn-font-lock-feature-keywords-alist):
4 Use `sexp' for :value-type instead of `face'.
5
12001-10-21 Eli Zaretskii <eliz@is.elta.co.il> 62001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
2 7
3 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the 8 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Fix the
diff --git a/lisp/progmodes/cwarn.el b/lisp/progmodes/cwarn.el
index b251487c9d5..ebc65edf076 100644
--- a/lisp/progmodes/cwarn.el
+++ b/lisp/progmodes/cwarn.el
@@ -1,6 +1,6 @@
1;;; cwarn.el --- highlight suspicious C and C++ constructions 1;;; cwarn.el --- highlight suspicious C and C++ constructions
2 2
3;; Copyright (C) 1999, 2000 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 4
5;; Author: Anders Lindgren <andersl@andersl.com> 5;; Author: Anders Lindgren <andersl@andersl.com>
6;; Keywords: c, languages, faces 6;; Keywords: c, languages, faces
@@ -168,7 +168,7 @@ keyword list."
168 :type '(alist :key-type (choice (const assign) 168 :type '(alist :key-type (choice (const assign)
169 (const semicolon) 169 (const semicolon)
170 (const reference)) 170 (const reference))
171 :value-type face) 171 :value-type (sexp :tag "Value"))
172 :group 'cwarn) 172 :group 'cwarn)
173 173
174(defcustom cwarn-verbose t 174(defcustom cwarn-verbose t