branch: elpa/helm commit 8e0f4a9abfaba80e658b69456f918701db32b292 Author: Thierry Volpiatto <thie...@posteo.net> Commit: Thierry Volpiatto <thie...@posteo.net>
Fix parens in helm-output-filter-1 --- helm-core.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/helm-core.el b/helm-core.el index 7b433d0354..3cd32930bf 100644 --- a/helm-core.el +++ b/helm-core.el @@ -5545,12 +5545,12 @@ This will work only in Emacs-26+, i.e. Emacs versions that have (let ((end (string-match ".*\\'" output))) (process-put proc 'incomplete-line (substring output end)) ;; output should now have only wholelines. - (setq output (substring output 0 end)) - ;; Now run the transformers (if some) on candidates and insert them in - ;; helm-buffer. - (helm-output-filter--process-source - (car process-assoc) output source - (helm-candidate-number-limit source))))) + (setq output (substring output 0 end))) + ;; Now run the transformers (if some) on candidates and insert them in + ;; helm-buffer. + (helm-output-filter--process-source + (car process-assoc) output source + (helm-candidate-number-limit source)))) (helm-output-filter--post-process))) (defun helm-output-filter--process-source (process output source limit)