* avoid.el: Require cl when compiling. And also move the
`provide' to the end.
+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.
;;; Code:
-(provide 'avoid)
+(eval-when-compile (require 'cl))
(defgroup avoid nil
"Make mouse pointer stay out of the way of editing."
(if mouse-avoidance-mode
(mouse-avoidance-mode mouse-avoidance-mode))
+(provide 'avoid)
+
;;; avoid.el ends here