diff lisp/progmodes/delphi.el @ 27647:c8d739c1aaf0

Make resourcestring a declaration region, like const and var.
author Ray Blaak <blaak@infomatch.com>
date Wed, 09 Feb 2000 07:04:15 +0000
parents 2dd8115a9f72
children 6878c61d1877
line wrap: on
line diff
--- a/lisp/progmodes/delphi.el	Tue Feb 08 10:00:51 2000 +0000
+++ b/lisp/progmodes/delphi.el	Wed Feb 09 07:04:15 2000 +0000
@@ -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 @@
   `(,@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)