summaryrefslogtreecommitdiff
path: root/helm-utils.el
diff options
context:
space:
mode:
authorNicholas Vollmer <iarchivedmywholelife@gmail.com>2020-07-28 01:32:24 -0400
committerNicholas Vollmer <iarchivedmywholelife@gmail.com>2020-07-28 01:32:24 -0400
commit860a6e5736bdb67dd12a3aeeeea69beeeae47cc7 (patch)
tree386627fb7b4f9a930d2fab94170a9458a28aee28 /helm-utils.el
parente2e8dabadbf067a2ecd68aca041a4431bea586ff (diff)
Fix byte compiler warnings
Diffstat (limited to 'helm-utils.el')
-rw-r--r--helm-utils.el22
1 files changed, 16 insertions, 6 deletions
diff --git a/helm-utils.el b/helm-utils.el
index 1bc67727..e88fbaee 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -22,16 +22,26 @@
(require 'helm-help)
(eval-when-compile (require 'dired))
-(declare-function helm-find-files-1 "helm-files.el" (fname &optional preselect))
+(declare-function helm-find-files-1 "helm-files" (fname &optional preselect))
+(declare-function helm-grep-split-line "helm-grep" (line))
(declare-function popup-tip "ext:popup")
-(declare-function markdown-show-subtree "outline.el")
-(declare-function outline-show-subtree "outline.el")
-(declare-function org-reveal "org.el")
-(declare-function tab-bar-tabs "tab-bar.el")
-(declare-function tab-bar-select-tab "tab-bar.el")
+(declare-function markdown-show-subtree "outline")
+(declare-function outline-show-subtree "outline")
+(declare-function org-reveal "org")
+(declare-function tab-bar-tabs "tab-bar")
+(declare-function tab-bar-select-tab "tab-bar")
+(declare-function dired-goto-file "dired")
+(declare-function bookmark-get-filename "bookmark")
+(declare-function package-installed-p "package")
+(declare-function package-desc-dir "package")
+
(defvar org-directory)
(defvar winner-boring-buffers)
+(defvar bookmark-alist)
(defvar helm-show-completion-overlay)
+(defvar helm-buffers-maybe-switch-to-tab)
+(defvar helm-ff-transformer-show-only-basename)
+(defvar helm-popup-tip-mode)
(defgroup helm-utils nil