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

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

[elpa] master 2251cc7 1/4: counsel.el: Switch from `with-no-warnings' to


From: Oleh Krehel
Subject: [elpa] master 2251cc7 1/4: counsel.el: Switch from `with-no-warnings' to `declare-function'
Date: Sat, 18 Apr 2015 16:22:07 +0000

branch: master
commit 2251cc7098979b27d83ceb2bfdfdf5ab26d72ea5
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    counsel.el: Switch from `with-no-warnings' to `declare-function'
---
 counsel.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/counsel.el b/counsel.el
index e7787c0..c1b90d6 100644
--- a/counsel.el
+++ b/counsel.el
@@ -125,6 +125,7 @@
                                  (ucs-names)))))
     (insert-char (get-text-property 0 'result char))))
 
+(declare-function cider-sync-request:complete "ext:cider-client")
 (defun counsel-clj ()
   "Clojure completion at point."
   (interactive)
@@ -132,8 +133,7 @@
    (lambda (str)
      (mapcar
       #'cl-caddr
-      (with-no-warnings
-        (cider-sync-request:complete str ":same"))))))
+      (cider-sync-request:complete str ":same")))))
 
 (defun counsel-git ()
   "Find file in the current Git repository."



reply via email to

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