summaryrefslogtreecommitdiff
path: root/helm-info.el
diff options
context:
space:
mode:
Diffstat (limited to 'helm-info.el')
-rw-r--r--helm-info.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/helm-info.el b/helm-info.el
index b32c1ec5..b5216c41 100644
--- a/helm-info.el
+++ b/helm-info.el
@@ -247,6 +247,12 @@ Info files are made available."
(defun helm-info-at-point ()
"Preconfigured `helm' for searching info at point."
(interactive)
+ (cl-loop for src in helm-info-default-sources
+ for name = (if (symbolp src)
+ (assoc 'name (symbol-value src))
+ (assoc 'name src))
+ unless name
+ do (warn "Couldn't build source `%S' without its info file" src))
(helm :sources helm-info-default-sources
:buffer "*helm info*"))