branch: elpa/evil-numbers
commit 3bd94723f8718f561344736064a44449c91dffb6
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Cleanup: indentation
---
evil-numbers.el | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/evil-numbers.el b/evil-numbers.el
index 439aafecd5..9a173bf91a 100644
--- a/evil-numbers.el
+++ b/evil-numbers.el
@@ -221,17 +221,17 @@ DIR: Direction to step in (1 -1).
CH-NUM: Number of characters to step.
LIMIT: Point which will not be stepped past."
(let* ((is-forward (< 0 dir))
- (skip-chars-fn (if is-forward
- #'skip-chars-forward
- #'skip-chars-backward))
- (clamp-fn (if is-forward
- #'min
- #'max))
+ (skip-chars-fn (if is-forward
+ #'skip-chars-forward
+ #'skip-chars-backward))
+ (clamp-fn (if is-forward
+ #'min
+ #'max))
(skipped
- (abs (funcall
- skip-chars-fn ch-skip
- ;; Limit.
- (funcall clamp-fn (+ (point) (* ch-num dir)) limit)))))
+ (abs (funcall
+ skip-chars-fn ch-skip
+ ;; Limit.
+ (funcall clamp-fn (+ (point) (* ch-num dir)) limit)))))
;; Step over single separators, as long as there is a number after them.
;; Allow '100,123' and '16_777_216' to be handled as single numbers.