Mercurial > emacs
diff lisp/avoid.el @ 29550:48ef50f314bf
(mouse-avoidance-random-shape): Don't quote lambda.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Sun, 11 Jun 2000 05:26:41 +0000 |
| parents | 28c61db89225 |
| children | 1e5a486b8b25 |
line wrap: on
line diff
--- a/lisp/avoid.el Sun Jun 11 05:00:35 2000 +0000 +++ b/lisp/avoid.el Sun Jun 11 05:26:41 2000 +0000 @@ -257,9 +257,9 @@ (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
