From: morioka Date: Mon, 26 Oct 1998 14:08:23 +0000 (+0000) Subject: From Mikio Nakajima : X-Git-Tag: apel-9_7~12 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fapel.git;a=commitdiff_plain;h=5b35f77c6a29e4883e077d0db7ab8c25d3823d65 From Mikio Nakajima : (add-local-hook): fixed. (remove-local-hook): fixed. --- diff --git a/poe.el b/poe.el index ec25124..efdf34e 100644 --- a/poe.el +++ b/poe.el @@ -199,13 +199,13 @@ The value is actually the element of LIST whose cdr equals KEY." (defmacro-maybe add-local-hook (hook function &optional append) (if (fboundp 'make-local-hook) - (list 'add-hook hook function append 'local) + (list 'add-hook hook function append t) (list 'add-hook hook function append) )) (defmacro remove-local-hook (hook function) (if (fboundp 'make-local-hook) - (list 'remove-hook hook function 'local) + (list 'remove-hook hook function t) (list 'remove-hook hook function) ))