Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions helm-dash.el
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,10 @@ If doesn't exist, it asks to create it."
(when (helm-dash--ensure-created-docsets-path (helm-dash-docsets-path))
(let ((feed-url (format "%s/%s.xml" helm-dash-docsets-url docset-name))
(feed-tmp-path (format "%s%s-feed.xml" temporary-file-directory docset-name)))
(url-copy-file feed-url feed-tmp-path t)
(helm-dash--install-docset (helm-dash-get-docset-url feed-tmp-path) docset-name))))
(funcall (if (fboundp 'make-thread) 'make-thread 'funcall)
(lambda ()
(url-copy-file feed-url feed-tmp-path t)
(helm-dash--install-docset (helm-dash-get-docset-url feed-tmp-path) docset-name))))))

;;;###autoload
(defun helm-dash-async-install-docset (docset-name)
Expand Down