branch: elpa/magit
commit 2a448f1e566560dbae54368f4cafbc5811a5671e
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
git-rebase-current-line: Cosmetics
---
lisp/git-rebase.el | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/lisp/git-rebase.el b/lisp/git-rebase.el
index 65441f89fc7..9de6f15af47 100644
--- a/lisp/git-rebase.el
+++ b/lisp/git-rebase.el
@@ -309,10 +309,9 @@ instance with all nil values is returned."
(goto-char (line-beginning-position))
(if-let ((re-start (concat "^\\(?5:" (regexp-quote comment-start)
"\\)? *"))
- (type (seq-some (lambda (arg)
+ (type (seq-some (pcase-lambda (`(,type . ,re))
(let ((case-fold-search nil))
- (and (looking-at (concat re-start (cdr arg)))
- (car arg))))
+ (and (looking-at (concat re-start re)) type)))
git-rebase-line-regexps)))
(git-rebase-action
:action-type type
@@ -323,7 +322,7 @@ instance with all nil values is returned."
:target (match-string-no-properties 3)
:trailer (match-string-no-properties 4)
:comment-p (and (match-string 5) t))
- ;; Use default empty class rather than nil to ease handling.
+ ;; Use empty object rather than nil to ease handling.
(git-rebase-action))))
(defun git-rebase-set-action (action)