(make-local-hook): Use `defun-maybe' directly.
authormorioka <morioka>
Fri, 7 May 1999 04:59:54 +0000 (04:59 +0000)
committermorioka <morioka>
Fri, 7 May 1999 04:59:54 +0000 (04:59 +0000)
poe.el

diff --git a/poe.el b/poe.el
index 12ec015..b25052f 100644 (file)
--- a/poe.el
+++ b/poe.el
@@ -234,12 +234,6 @@ the hook's buffer-local value rather than its default value
           (if (equal hook-value function)
               (setq hook-value nil)))
         (set hook hook-value))))
-
-   (defun-maybe make-local-hook (hook)
-     "Make the hook HOOK local to the current buffer.
-This function is only for emulation.
-\[Emacs 19.29 emulating function]"
-     )
    )
   (wrong-number-of-arguments
    ;; emulate `local' arg for version 19.28 and earlier.
@@ -279,13 +273,13 @@ the hook's buffer-local value rather than its default value
 \[Emacs 19.29 emulating function]"
           ;; the third argument LOCAL is simply ignored.
           (si:remove-hook hook function))))
+   ))
 
-   (defun-maybe make-local-hook (hook)
-     "Make the hook HOOK local to the current buffer.
+(defun-maybe make-local-hook (hook)
+  "Make the hook HOOK local to the current buffer.
 This function is only for emulation.
 \[Emacs 19.29 emulating function]"
-     )
-   ))
+  )
 
 (defvar-maybe path-separator ":"
   "Character used to separate concatenated paths.")