From 5b35f77c6a29e4883e077d0db7ab8c25d3823d65 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 26 Oct 1998 14:08:23 +0000 Subject: [PATCH] From Mikio Nakajima : (add-local-hook): fixed. (remove-local-hook): fixed. --- poe.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) )) -- 1.7.10.4