summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-23 15:17:56 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-23 15:17:56 +0200
commit3e7ca91d6043288e5269cdf1d7303256646cb60b (patch)
tree141736359e4eff7bbdef6d20036acfff79331a53
parent2a68862f877fcbfeae6782b236586c3e050c19a2 (diff)
emacs: Replace let* with let
-rw-r--r--.config/emacs/increment.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/increment.el b/.config/emacs/increment.el
index bcbcfd8..41c8805 100644
--- a/.config/emacs/increment.el
+++ b/.config/emacs/increment.el
@@ -105,8 +105,8 @@ the number at point has leading zeros then the width of the number is
preserved."
(interactive "*p")
(save-match-data
- (let* (case-fold-search
- (match-pair (increment--match-number-at-point)))
+ (let (case-fold-search
+ (match-pair (increment--match-number-at-point)))
(unless match-pair
(let ((save-point (point)))
(unless (re-search-forward