From 76d1e5a4992402e8ed5c7eeec2eecabfdf3c4270 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 11 Jun 2000 05:26:41 +0000 Subject: [PATCH] (mouse-avoidance-random-shape): Don't quote lambda. --- lisp/avoid.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/avoid.el b/lisp/avoid.el index 47e8c6adf87..f5712427964 100644 --- a/lisp/avoid.el +++ b/lisp/avoid.el @@ -257,9 +257,9 @@ redefine this function to suit your own tastes." (if (null mouse-avoidance-pointer-shapes) (progn (setq mouse-avoidance-pointer-shapes - (mapcar '(lambda (x) (symbol-value (intern x))) + (mapcar (lambda (x) (symbol-value (intern x))) (all-completions "x-pointer-" obarray - '(lambda (x) + (lambda (x) (and (boundp x) (integerp (symbol-value x))))))) (setq mouse-avoidance-n-pointer-shapes -- 2.39.2