From 52300ff85242801f87695fb03fae99a4fd57c020 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Mon, 26 Nov 2012 11:21:27 +0000 Subject: [PATCH] Prevent byte-compilation warnings 'cl functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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