summaryrefslogtreecommitdiff
path: root/evil-surround.el
diff options
context:
space:
mode:
authorHenrik Lissner <henrik@lissner.net>2015-11-18 00:46:09 -0500
committerHenrik Lissner <henrik@lissner.net>2015-11-18 00:46:09 -0500
commit06071c342560ebcbfe914c6a8495f10dde627d3a (patch)
tree423050968a62786df7cebdbae7131b760fb99c6a /evil-surround.el
parent641498131afea83dc612b73569ba61055a648ec8 (diff)
let* => let
Diffstat (limited to 'evil-surround.el')
-rwxr-xr-xevil-surround.el4
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))