From 093849f9ca82296eccfcb05d8c6f374bb59ba386 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 27 Oct 2000 00:54:52 +0000 Subject: [PATCH] (widget-add-change): Don't bother with make-local-hook. --- lisp/wid-edit.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index bfed43794a6..deed46ddcda 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -1122,11 +1122,8 @@ Unlike (get-char-property POS 'field) this, works with empty fields too." (widget-apply from-field :notify from-field)))))) (defun widget-add-change () - (make-local-hook 'post-command-hook) (remove-hook 'post-command-hook 'widget-add-change t) - (make-local-hook 'before-change-functions) (add-hook 'before-change-functions 'widget-before-change nil t) - (make-local-hook 'after-change-functions) (add-hook 'after-change-functions 'widget-after-change nil t)) (defun widget-after-change (from to old) -- 2.39.2