changeset 41774:6297965bc792

(delphi-mode): Don't use make-local-hook.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 02 Dec 2001 07:17:48 +0000
parents 31e7749d1e1a
children c4946eb1e1e8
files lisp/progmodes/delphi.el
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/delphi.el	Sun Dec 02 07:17:00 2001 +0000
+++ b/lisp/progmodes/delphi.el	Sun Dec 02 07:17:48 2001 +0000
@@ -65,11 +65,15 @@
 (provide 'delphi)
 
 (defconst delphi-version
-  (let ((revision "$Revision: 3.5 $"))
+  (let ((revision "$Revision: 3.6 $"))
     (string-match ": \\([^ ]+\\)" revision)
     (match-string 1 revision))
   "Version of this delphi mode.")
 ;;; $Log: delphi.el,v $
+;;; Revision 3.6  2001/07/16 12:22:59  pj
+;;;
+;;; Some fixes to follow coding conventions.
+;;;
 ;;; Revision 3.5  2001/01/26 20:54:03  fx
 ;;; (delphi-comment-face, delphi-string-face)
 ;;; (delphi-keyword-face, delphi-other-face): Fix :type.
@@ -2021,7 +2025,6 @@
 
   ;; We need to keep track of changes to the buffer to determine if we need
   ;; to retokenize changed text.
-  (make-local-hook 'after-change-functions)
   (add-hook 'after-change-functions 'delphi-after-change nil t)
 
   (widen)