Move provide to the top to avoid circular dependency.
authorshuhei-k <shuhei-k>
Sun, 16 May 1999 09:25:18 +0000 (09:25 +0000)
committershuhei-k <shuhei-k>
Sun, 16 May 1999 09:25:18 +0000 (09:25 +0000)
localhook.el

index d0b392c..e565606 100644 (file)
@@ -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.