Skip to content

Commit a81a721

Browse files
committed
fix compile warning
1 parent 6b5b6df commit a81a721

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

jcs-poptip.el

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -250,14 +250,13 @@ forever delay. HEIGHT of the tooltip that will display."
250250
(let ((thing (jcs-poptip-2str (symbol-at-point)))
251251
(desc))
252252
(msgu-silent
253-
(cl-some (lambda (backend)
254-
(ignore-errors (funcall backend 'candidates thing)) ; refresh
255-
(setq desc
253+
(setq desc
254+
(cl-some (lambda (backend)
255+
(ignore-errors (funcall backend 'candidates thing)) ; refresh
256256
(or (jcs-poptip--company-doc-buffer backend thing)
257257
(ignore-errors (funcall backend 'quickhelp-string thing))
258258
(ignore-errors (funcall backend 'meta thing))))
259-
desc)
260-
(jcs-poptip--company-backends)))
259+
(jcs-poptip--company-backends))))
261260
(jcs-poptip-create (string-trim desc) :point (point))))
262261

263262
(defun jcs-poptip--company-dict ()

0 commit comments

Comments
 (0)