# HG changeset patch # User Stefan Monnier # Date 976189921 0 # Node ID 1e0fd85c0b6029fb03d17c1aab728c731041fc0c # Parent 3db707e59e216151b4ef6d007bf8328dfa673a30 (define-derived-mode): Don't use combine-run-hooks. diff -r 3db707e59e21 -r 1e0fd85c0b60 lisp/derived.el --- a/lisp/derived.el Thu Dec 07 11:45:33 2000 +0000 +++ b/lisp/derived.el Thu Dec 07 11:52:01 2000 +0000 @@ -150,7 +150,7 @@ ,docstring (interactive) ; Run the parent. - (combine-run-hooks + ;; (combine-run-hooks (,parent) ; Identify special modes. @@ -177,7 +177,8 @@ (set-syntax-table ,syntax) (setq local-abbrev-table ,abbrev) ; Splice in the body (if any). - ,@body) + ,@body + ;; ) ; Run the hooks, if any. (run-hooks ',hook)))))