emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/multiple-cursors 52300ff 190/434: Prevent byte-compilation


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors 52300ff 190/434: Prevent byte-compilation warnings 'cl functions
Date: Sat, 7 Aug 2021 09:20:23 -0400 (EDT)

branch: elpa/multiple-cursors
commit 52300ff85242801f87695fb03fae99a4fd57c020
Author: Steve Purcell <steve@sanityinc.com>
Commit: Steve Purcell <steve@sanityinc.com>

    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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]