Skip to content

Commit

Permalink
* helm.el: Check if source have a symbol name (#647).
Browse files Browse the repository at this point in the history
  • Loading branch information
thierryvolpiatto committed Oct 5, 2014
1 parent 335c8e0 commit 169dbe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm.el
Expand Up @@ -4635,8 +4635,8 @@ This will enable `helm-follow-mode' automatically in `helm-source-buffers-list'.
(if helm-follow-mode
"enabled" "disabled"))
(helm-display-mode-line src))
(unless (and helm-follow-mode-persistent sym)
(set sym (remove (assq 'follow src) src))))))
(unless helm-follow-mode-persistent
(and sym (set sym (remove (assq 'follow src) src)))))))

(defvar helm-follow-input-idle-delay nil
"`helm-follow-mode' will execute its persistent action after this delay.
Expand Down

0 comments on commit 169dbe5

Please sign in to comment.