Move `call-after-loaded' to semi-setup.el.
authormorioka <morioka>
Wed, 17 Jun 1998 21:33:06 +0000 (21:33 +0000)
committermorioka <morioka>
Wed, 17 Jun 1998 21:33:06 +0000 (21:33 +0000)
semi-def.el

index 74dd719..e82d36e 100644 (file)
@@ -248,20 +248,6 @@ FUNCTION.")
 ;;; @ Other Utility
 ;;;
 
-(defun call-after-loaded (module func &optional hook-name)
-  "If MODULE is provided, then FUNC is called.
-Otherwise func is set to MODULE-load-hook.
-If optional argument HOOK-NAME is specified,
-it is used as hook to set."
-  (if (featurep module)
-      (funcall func)
-    (or hook-name
-       (setq hook-name (intern (concat (symbol-name module) "-load-hook")))
-       )
-    (add-hook hook-name func)
-    ))
-
-
 (defvar mime-condition-type-alist
   '((preview . mime-preview-condition)
     (action . mime-acting-condition)))