]> git.eshelyaron.com Git - emacs.git/commitdiff
(derived-mode-run-hooks): Remove.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 15 Jul 2005 01:23:01 +0000 (01:23 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 15 Jul 2005 01:23:01 +0000 (01:23 +0000)
(derived-mode-hook-name): Doc fix.

lisp/ChangeLog
lisp/emacs-lisp/derived.el

index 257843eb7ffafcf888a3a7242a9fafd9d4691ad4..d92000d3d47f35df21d72d13b071f8887ec4cfd9 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/derived.el (derived-mode-run-hooks): Remove.
+       (derived-mode-hook-name): Doc fix.
+
 2005-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * term.el (term-mode): Disable cua-mode for term buffers.
index ef8e3288bbc24baec6f925485613fb6e894cc5b8..244e3fb368cd52ecf463f6ccd13f9dcdf049bde9 100644 (file)
@@ -96,7 +96,7 @@
 ;;; PRIVATE: defsubst must be defined before they are first used
 
 (defsubst derived-mode-hook-name (mode)
-  "Construct the mode hook name based on mode name MODE."
+  "Construct a mode-hook name based on a MODE name."
   (intern (concat (symbol-name mode) "-hook")))
 
 (defsubst derived-mode-map-name (mode)
@@ -382,19 +382,6 @@ Always merge its parent into it, since the merge is non-destructive."
     (derived-mode-merge-abbrev-tables old-table new-table)
     (setq local-abbrev-table new-table)))
 
-;;;(defun derived-mode-run-setup-function (mode)
-;;;  "Run the setup function if it exists."
-
-;;;  (let ((fname (derived-mode-setup-function-name mode)))
-;;;    (if (fboundp fname)
-;;;    (funcall fname))))
-
-(defun derived-mode-run-hooks (mode)
-  "Run the mode hook for MODE."
-  (let ((hooks-name (derived-mode-hook-name mode)))
-    (if (boundp hooks-name)
-       (run-hooks hooks-name))))
-
 ;; Functions to merge maps and tables.
 
 (defun derived-mode-merge-keymaps (old new)