emacs-helm/helm-describe-modes

Don't use `intern-soft` for no reason

Closed this issue · 0 comments

It's not necessary to use intern-soft when working with helm-marked-candidates. For example, the following

(mapc (lambda (mode)    
    (funcall (intern-soft mode) t))
      (helm-marked-candidates)))

Can be replaced with:

(mapc #'funcall (helm-marked candidates))