aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/avoid.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen2012-04-13 23:17:38 +0200
committerLars Ingebrigtsen2012-04-13 23:17:38 +0200
commit4b63a9ca3d6451521cdcd2274e9ab1c9b16ba092 (patch)
treee3ed88b3a9f079de715cfa6f72646df709f51423 /lisp/avoid.el
parent0f84437ba220c859513e692f3753c8162d53a4d6 (diff)
downloademacs-4b63a9ca3d6451521cdcd2274e9ab1c9b16ba092.tar.gz
emacs-4b63a9ca3d6451521cdcd2274e9ab1c9b16ba092.zip
avoid.el compiliation fixups
* avoid.el: Require cl when compiling. And also move the `provide' to the end.
Diffstat (limited to 'lisp/avoid.el')
-rw-r--r--lisp/avoid.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/avoid.el b/lisp/avoid.el
index 81e0737c849..eb8a4ad23a2 100644
--- a/lisp/avoid.el
+++ b/lisp/avoid.el
@@ -67,7 +67,7 @@
67 67
68;;; Code: 68;;; Code:
69 69
70(provide 'avoid) 70(eval-when-compile (require 'cl))
71 71
72(defgroup avoid nil 72(defgroup avoid nil
73 "Make mouse pointer stay out of the way of editing." 73 "Make mouse pointer stay out of the way of editing."
@@ -457,4 +457,6 @@ definition of \"random distance\".)"
457(if mouse-avoidance-mode 457(if mouse-avoidance-mode
458 (mouse-avoidance-mode mouse-avoidance-mode)) 458 (mouse-avoidance-mode mouse-avoidance-mode))
459 459
460(provide 'avoid)
461
460;;; avoid.el ends here 462;;; avoid.el ends here