From d4e4a59406435edc4e7c0a39e805f77bef5f32f2 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 26 Oct 1998 14:08:57 +0000 Subject: [PATCH] (remove-local-hook): Use `defmacro-maybe'. --- poe.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poe.el b/poe.el index efdf34e..1f19956 100644 --- a/poe.el +++ b/poe.el @@ -203,7 +203,7 @@ The value is actually the element of LIST whose cdr equals KEY." (list 'add-hook hook function append) )) -(defmacro remove-local-hook (hook function) +(defmacro-maybe remove-local-hook (hook function) (if (fboundp 'make-local-hook) (list 'remove-hook hook function t) (list 'remove-hook hook function) -- 1.7.10.4