diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-10-21 22:47:15 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-10-21 22:47:15 +0000 |
commit | 0480815792123186192bb40ad718dbb0b68b1bea (patch) | |
tree | 937b8d91c3aa01a2f54b1dd233efcd6eda13c0fb /lisp/progmodes/cwarn.el | |
parent | 98515cf03bb90245f75b9b8267aaf76677ea7948 (diff) | |
download | emacs-0480815792123186192bb40ad718dbb0b68b1bea.tar.gz |
(cwarn-font-lock-feature-keywords-alist):
Use `sexp' for :value-type instead of `face'.
Diffstat (limited to 'lisp/progmodes/cwarn.el')
-rw-r--r-- | lisp/progmodes/cwarn.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ ;;; cwarn.el --- highlight suspicious C and C++ constructions -;; Copyright (C) 1999, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. ;; Author: Anders Lindgren <andersl@andersl.com> ;; Keywords: c, languages, faces @@ -168,7 +168,7 @@ keyword list." :type '(alist :key-type (choice (const assign) (const semicolon) (const reference)) - :value-type face) + :value-type (sexp :tag "Value")) :group 'cwarn) (defcustom cwarn-verbose t |