branch: elpa/multiple-cursors
commit 52300ff85242801f87695fb03fae99a4fd57c020
Author: Steve Purcell <[email protected]>
Commit: Steve Purcell <[email protected]>
Prevent byte-compilation warnings 'cl functions
Prevents the following senseless warnings:
In mc/first-fake-cursor-after:
mc-cycle-cursors.el:76:70:Warning: function `remove-if' from cl package
called
at runtime
mc-cycle-cursors.el:78:64:Warning: function `sort*' from cl package
called at
runtime
In mc/last-fake-cursor-before:
mc-cycle-cursors.el:85:71:Warning: function `remove-if' from cl package
called
at runtime
mc-cycle-cursors.el:87:65:Warning: function `sort*' from cl package
called at
runtime
---
mc-cycle-cursors.el | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/mc-cycle-cursors.el b/mc-cycle-cursors.el
index 0782f21..4c93dc7 100644
--- a/mc-cycle-cursors.el
+++ b/mc-cycle-cursors.el
@@ -113,4 +113,10 @@
(provide 'mc-cycle-cursors)
+
+;; Local Variables:
+;; coding: utf-8
+;; byte-compile-warnings: (not cl-functions)
+;; End:
+
;;; mc-cycle-cursors.el ends here