branch: externals/embark commit ab920eaadf43bcb92832c980adbf2d8c9468ec98 Author: Omar Antolín <omar.anto...@gmail.com> Commit: Omar Antolín <omar.anto...@gmail.com>
Fix bug that broke act-all on targets with no bounds I've been testing so much on selections in regular buffers I didn't notice the parenthesis were incorrectly nested! 😬 --- embark.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embark.el b/embark.el index 91a6ae2b09..ede4d3c80a 100644 --- a/embark.el +++ b/embark.el @@ -2385,8 +2385,8 @@ ARG is the prefix argument." ((symbol-function 'embark--confirm) #'ignore)) (let ((prefix-arg prefix)) (when-let ((bounds (plist-get candidate :bounds))) - (goto-char (car bounds)) - (embark--act action candidate)))))) + (goto-char (car bounds))) + (embark--act action candidate))))) (quit (embark--quit-p action))) (when (and (eq action (embark--default-action type)) (eq action embark--command))