summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-12-02 07:17:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-12-02 07:17:48 +0000
commit157704f7cf82ba9779803b5e2683824edb46c951 (patch)
tree681e4d683bed63cf41d9dfd4e4578099d0086e34
parent52dcc11466283cd06b326fd5bf83d19dcb4aaf25 (diff)
downloademacs-157704f7cf82ba9779803b5e2683824edb46c951.tar.gz
(delphi-mode): Don't use make-local-hook.
-rw-r--r--lisp/progmodes/delphi.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/progmodes/delphi.el b/lisp/progmodes/delphi.el
index 8af7d07e2a3..ebd31901442 100644
--- a/lisp/progmodes/delphi.el
+++ b/lisp/progmodes/delphi.el
@@ -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 @@ no args, if that value is non-nil."
;; 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)