branch: externals/kiwix commit 06ad0afbe58b7951f8959fad18440a84690389c5 Author: stardiviner <numbch...@gmail.com> Commit: stardiviner <numbch...@gmail.com>
remove duplicate function names --- kiwix-http.el | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/kiwix-http.el b/kiwix-http.el index 09f720c..fae7b13 100644 --- a/kiwix-http.el +++ b/kiwix-http.el @@ -88,24 +88,6 @@ Return a list of results." ) ) -;; TODO: finnally, write a function to reterive the values from the last command. - -;; final function -;;;###autoload -(defun kiwix-at-point (&optional edit-search) - "Search for the word at point in Kiwix." - (interactive "P") - (let* ((thing (if mark-active - (buffer-substring (region-beginning) (region-end)) - (thing-at-point 'symbol))) - (search (kiwix-maybe-specify-library thing))) - (kiwix-run-search - (if (or edit-search (null thing)) - (read-string "Kiwix search: " search) - search)))) - -;; TODO: add org-mode protocol support: `wiki_offline:' - (provide 'kiwix-http)