Function: mh-make-local-hook

mh-make-local-hook is an autoloaded macro defined in mh-acros.el.gz.

This macro is obsolete since 29.1.

Signature

(mh-make-local-hook HOOK)

Documentation

Make HOOK local if needed.

XEmacs and versions of GNU Emacs before 21.1 require make-local-hook to be called.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-acros.el.gz
;;; Miscellaneous

;;;###mh-autoload
(defmacro mh-make-local-hook (hook)
  "Make HOOK local if needed.
XEmacs and versions of GNU Emacs before 21.1 require
`make-local-hook' to be called."
  (declare (obsolete nil "29.1"))
  (when (and (fboundp 'make-local-hook)
             (not (get 'make-local-hook 'byte-obsolete-info)))
    `(make-local-hook ,hook)))