Some fixes to follow coding conventions in files maintained by FSF.
[bpt/emacs.git] / lisp / derived.el
index b8be0c3..28b1a99 100644 (file)
@@ -1,4 +1,4 @@
-;;; derived.el --- allow inheritance of major modes.
+;;; derived.el --- allow inheritance of major modes
 ;;; (formerly mode-clone.el)
 
 ;; Copyright (C) 1993, 1994, 1999 Free Software Foundation, Inc.
@@ -150,7 +150,7 @@ been generated automatically, with a reference to the keymap."
         ,docstring
         (interactive)
                                        ; Run the parent.
-        (combine-run-hooks
+        ;; (combine-run-hooks
 
          (,parent)
                                        ; Identify special modes.
@@ -177,7 +177,8 @@ been generated automatically, with a reference to the keymap."
          (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)))))