diff options
author | Dave Love <fx@gnu.org> | 2001-01-26 20:55:26 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2001-01-26 20:55:26 +0000 |
commit | 3afe2b93e6c69c8c9b3a123f55b2ccac0e8c3fec (patch) | |
tree | 7591bbfc02ef588083883b129e2f597da179a61e /lisp/progmodes/delphi.el | |
parent | f3d73dc932518d90d688dfff7bf4310167fc2a19 (diff) | |
download | emacs-3afe2b93e6c69c8c9b3a123f55b2ccac0e8c3fec.tar.gz |
(delphi-comment-face, delphi-string-face)
(delphi-keyword-face, delphi-other-face): Fix :type.
Diffstat (limited to 'lisp/progmodes/delphi.el')
-rw-r--r-- | lisp/progmodes/delphi.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lisp/progmodes/delphi.el b/lisp/progmodes/delphi.el index 3a3153096e0..c3e9a9e264f 100644 --- a/lisp/progmodes/delphi.el +++ b/lisp/progmodes/delphi.el @@ -65,11 +65,14 @@ (provide 'delphi) (defconst delphi-version - (let ((revision "$Revision: 3.3 $")) + (let ((revision "$Revision: 3.4 $")) (string-match ": \\([^ ]+\\)" revision) (match-string 1 revision)) "Version of this delphi mode.") ;;; $Log: delphi.el,v $ +;;; Revision 3.4 2000/02/09 07:04:15 blaak +;;; Make resourcestring a declaration region, like const and var. +;;; ;;; Revision 3.3 2000/02/01 14:32:21 fx ;;; (delphi): Add :version to defgroup. ;;; @@ -182,22 +185,22 @@ differs from the default." (defcustom delphi-comment-face 'font-lock-comment-face "*Face used to color delphi comments." - :type 'facep + :type 'face :group 'delphi) (defcustom delphi-string-face 'font-lock-string-face "*Face used to color delphi strings." - :type 'facep + :type 'face :group 'delphi) (defcustom delphi-keyword-face 'font-lock-keyword-face "*Face used to color delphi keywords." - :type 'facep + :type 'face :group 'delphi) (defcustom delphi-other-face nil "*Face used to color everything else." - :type 'facep + :type 'face :group 'delphi) (defconst delphi-directives |