From 310c9f40fd5828fdbbe33c775809fab3e8779106 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 30 May 1996 17:12:48 +0000 Subject: [PATCH] (event-point): Fix fboundp test surrounding this. --- lisp/custom.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/custom.el b/lisp/custom.el index e9657538ecf..d6fe0cbaa8b 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -182,7 +182,7 @@ STRING should be given if the last search was by `string-match' on STRING." (setq props (nthcdr 2 props))) (remove-text-properties start end ()))))) -(or (fboundp 'event-closest-point) +(or (fboundp 'event-point) ;; Missing in Emacs 19.29. (defun event-point (event) "Return the character position of the given mouse-motion, button-press, -- 2.11.4.GIT