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
5 changes: 2 additions & 3 deletions helm-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,7 @@ Get PARENTS as well when specified."
;; clear cache for new version of org-get-outline-path
(and (boundp 'org-outline-path-cache)
(setq org-outline-path-cache nil))
(cl-loop with width = (window-width (helm-window))
while (funcall search-fn)
(cl-loop while (funcall search-fn)
for beg = (point-at-bol)
for end = (point-at-eol)
when (and fontify
Expand All @@ -320,7 +319,7 @@ Get PARENTS as well when specified."
(list heading))
(wrong-number-of-arguments
(org-get-outline-path t t)))
width file)
999 file)
(if file
(concat file (funcall match-fn 0))
(funcall match-fn 0)))
Expand Down