diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 15:17:56 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 15:17:56 +0200 |
commit | 3e7ca91d6043288e5269cdf1d7303256646cb60b (patch) | |
tree | 141736359e4eff7bbdef6d20036acfff79331a53 /.config/emacs/increment.el | |
parent | 2a68862f877fcbfeae6782b236586c3e050c19a2 (diff) |
emacs: Replace let* with let
Diffstat (limited to '.config/emacs/increment.el')
-rw-r--r-- | .config/emacs/increment.el | 4 |
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 |