From 1e7f838428b31b78e0c5919c080f897d8d7b44a1 Mon Sep 17 00:00:00 2001 From: junjie Date: Sun, 25 Aug 2024 22:23:31 +0800 Subject: [PATCH] clean --- config/mill.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/mill.el b/config/mill.el index c24888ae..1cbb9689 100644 --- a/config/mill.el +++ b/config/mill.el @@ -59,10 +59,10 @@ If prefix BOUNDARY is non-nil, then mark the whole string." (interactive "P") (let ((bs (_mark_string@_))) - (unless bs - (user-error "%s" "No string found")) - (_mark_thing_ (if boundary (car bs) (1+ (car bs))) - (if boundary (cdr bs) (1- (cdr bs)))))) + (unless bs + (user-error "%s" "No string found")) + (_mark_thing_ (if boundary (car bs) (1+ (car bs))) + (if boundary (cdr bs) (1- (cdr bs)))))) (defun kill-string@ (&optional boundary) @@ -73,7 +73,7 @@ If prefix BOUNDARY is non-nil, then kill the whole string." (unless bs (user-error "%s" "No string found")) (kill-region (if boundary (car bs) (1+ (car bs))) - (if boundary (cdr bs) (1- (cdr bs)))))) + (if boundary (cdr bs) (1- (cdr bs)))))) ;; end of `mark-string@'