1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

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

@ -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