avoid.el compiliation fixups

* avoid.el: Require cl when compiling.  And also move the
`provide' to the end.
This commit is contained in:
Lars Ingebrigtsen 2012-04-13 23:17:38 +02:00
parent 0f84437ba2
commit 4b63a9ca3d
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
* avoid.el: Require cl when compiling. And also move the
`provide' to the end.
2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
* avoid.el (mouse-avoidance-banish-position): New variable.

View file

@ -67,7 +67,7 @@
;;; Code:
(provide 'avoid)
(eval-when-compile (require 'cl))
(defgroup avoid nil
"Make mouse pointer stay out of the way of editing."
@ -457,4 +457,6 @@ definition of \"random distance\".)"
(if mouse-avoidance-mode
(mouse-avoidance-mode mouse-avoidance-mode))
(provide 'avoid)
;;; avoid.el ends here