From: shuhei-k Date: Sun, 16 May 1999 09:25:18 +0000 (+0000) Subject: Move provide to the top to avoid circular dependency. X-Git-Tag: apel-9_19~29 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ff451a1df550ce986d3bf192ddbc3a2866ac2019;p=elisp%2Fapel.git Move provide to the top to avoid circular dependency. --- diff --git a/localhook.el b/localhook.el index d0b392c..e565606 100644 --- a/localhook.el +++ b/localhook.el @@ -60,7 +60,8 @@ ;;; Code: -(require 'poe) +(provide 'localhook) ; beware of circular dependency. +(require 'poe) ; this file is loaded from poe.el. ;;; These two functions are not complete, but work enough for our purpose. ;; @@ -309,6 +310,4 @@ not `make-local-variable'." ;;; @ End. ;;; -(provide 'localhook) - ;;; localhook.el ends here.