aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2012-04-13 23:17:38 +0200
committerLars Ingebrigtsen2012-04-13 23:17:38 +0200
commit4b63a9ca3d6451521cdcd2274e9ab1c9b16ba092 (patch)
treee3ed88b3a9f079de715cfa6f72646df709f51423
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.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/avoid.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 87163f1cae8..c806ed4a803 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * avoid.el: Require cl when compiling. And also move the
4 `provide' to the end.
5
12012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com> 62012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2 7
3 * avoid.el (mouse-avoidance-banish-position): New variable. 8 * avoid.el (mouse-avoidance-banish-position): New variable.
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