[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107894: avoid.el compiliation fixups
From: |
Lars Ingebrigtsen |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107894: avoid.el compiliation fixups |
Date: |
Fri, 13 Apr 2012 23:17:38 +0200 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107894
committer: Lars Ingebrigtsen <address@hidden>
branch nick: trunk
timestamp: Fri 2012-04-13 23:17:38 +0200
message:
avoid.el compiliation fixups
* avoid.el: Require cl when compiling. And also move the
`provide' to the end.
modified:
lisp/ChangeLog
lisp/avoid.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-04-13 21:12:48 +0000
+++ b/lisp/ChangeLog 2012-04-13 21:17:38 +0000
@@ -1,3 +1,8 @@
+2012-04-13 Lars Ingebrigtsen <address@hidden>
+
+ * avoid.el: Require cl when compiling. And also move the
+ `provide' to the end.
+
2012-04-13 Thierry Volpiatto <address@hidden>
* avoid.el (mouse-avoidance-banish-position): New variable.
=== modified file 'lisp/avoid.el'
--- a/lisp/avoid.el 2012-04-13 21:15:22 +0000
+++ b/lisp/avoid.el 2012-04-13 21:17:38 +0000
@@ -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 @@
(if mouse-avoidance-mode
(mouse-avoidance-mode mouse-avoidance-mode))
+(provide 'avoid)
+
;;; avoid.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107894: avoid.el compiliation fixups,
Lars Ingebrigtsen <=