From: Ray Blaak Date: Wed, 9 Feb 2000 07:04:15 +0000 (+0000) Subject: Make resourcestring a declaration region, like const and var. X-Git-Tag: emacs-pretest-21.0.90~5065 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e97a246146ef29f263a14cd6bd6a60a6e937618c;p=emacs.git Make resourcestring a declaration region, like const and var. --- diff --git a/lisp/progmodes/delphi.el b/lisp/progmodes/delphi.el index 930dd09f1ff..3a3153096e0 100644 --- a/lisp/progmodes/delphi.el +++ b/lisp/progmodes/delphi.el @@ -65,11 +65,14 @@ (provide 'delphi) (defconst delphi-version - (let ((revision "$Revision: 3.2 $")) + (let ((revision "$Revision: 3.3 $")) (string-match ": \\([^ ]+\\)" revision) (match-string 1 revision)) "Version of this delphi mode.") ;;; $Log: delphi.el,v $ +;;; Revision 3.3 2000/02/01 14:32:21 fx +;;; (delphi): Add :version to defgroup. +;;; ;;; Revision 3.2 1999/08/18 05:08:39 blaak ;;; checked in with -k by blaak at 1999/08/18 05:08:39 ;;; @@ -276,7 +279,7 @@ are followed by an expression.") `(,@delphi-end-block-statements ,@delphi-mid-block-statements) "Statements that match the indentation of the parent block.") -(defconst delphi-decl-sections '(type const var label) +(defconst delphi-decl-sections '(type const var label resourcestring) "Denotes the start of a declaration section.") (defconst delphi-class-types '(class object)