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

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

[elpa] master d89abf2 104/167: counsel.el (counsel--find-symbol): Silenc


From: Oleh Krehel
Subject: [elpa] master d89abf2 104/167: counsel.el (counsel--find-symbol): Silence byte compiler
Date: Tue, 08 Dec 2015 10:50:19 +0000

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

    counsel.el (counsel--find-symbol): Silence byte compiler
---
 counsel.el |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/counsel.el b/counsel.el
index 9ed334a..8bfcbdc 100644
--- a/counsel.el
+++ b/counsel.el
@@ -170,7 +170,8 @@
 
 (defun counsel--find-symbol (x)
   "Find symbol definition that corresponds to string X."
-  (ring-insert find-tag-marker-ring (point-marker))
+  (with-no-warnings
+    (ring-insert find-tag-marker-ring (point-marker)))
   (let ((full-name (get-text-property 0 'full-name x)))
     (if full-name
         (find-library full-name)



reply via email to

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