diff options
Diffstat (limited to 'evil-surround.el')
| -rwxr-xr-x | evil-surround.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-surround.el b/evil-surround.el index 63df8f6..e22755f 100755 --- a/evil-surround.el +++ b/evil-surround.el @@ -223,8 +223,8 @@ overlays OUTER and INNER, which are passed to `evil-surround-delete'." (defun evil-surround-block (beg end char) "Split a block into regions per line and surround them individually. Skips lines where the columns don't line up." - (let* ((beg-col (evil-surround-column-at beg)) - (end-col (evil-surround-column-at end))) + (let ((beg-col (evil-surround-column-at beg)) + (end-col (evil-surround-column-at end))) (evil-apply-on-block (lambda (ibeg iend) (unless (< (evil-surround-column-at ibeg) (min beg-col end-col)) |
