diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2026-01-01 17:39:35 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2026-01-01 17:39:35 +0100 |
| commit | bf1a7dc26396d27e0836762f96919ac314919f32 (patch) | |
| tree | 42aaf8512c8e9bb2dc451bd67a25eaa4e94d0906 /lisp/git-commit.el | |
| parent | ed67642a25e8aa6fc5c5438fb1ddb6d7c7e94ddf (diff) | |
Improve indentation of interactive
Emacs 31.1 adds variable `lisp-indent-local-overrides'.
Diffstat (limited to 'lisp/git-commit.el')
| -rw-r--r-- | lisp/git-commit.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/git-commit.el b/lisp/git-commit.el index c2133c0..8f2444d 100644 --- a/lisp/git-commit.el +++ b/lisp/git-commit.el @@ -722,9 +722,9 @@ With a numeric prefix ARG, go forward ARG messages." "Search backward through message history for a match for STRING. Save current message first." (interactive - (list (read-string (format-prompt "Comment substring" - log-edit-last-comment-match) - nil nil log-edit-last-comment-match))) + (list (read-string (format-prompt "Comment substring" + log-edit-last-comment-match) + nil nil log-edit-last-comment-match))) (cl-letf (((symbol-function #'log-edit-previous-comment) (symbol-function #'git-commit-prev-message))) (log-edit-comment-search-backward string))) @@ -733,9 +733,9 @@ Save current message first." "Search forward through message history for a match for STRING. Save current message first." (interactive - (list (read-string (format-prompt "Comment substring" - log-edit-last-comment-match) - nil nil log-edit-last-comment-match))) + (list (read-string (format-prompt "Comment substring" + log-edit-last-comment-match) + nil nil log-edit-last-comment-match))) (cl-letf (((symbol-function #'log-edit-previous-comment) (symbol-function #'git-commit-prev-message))) (log-edit-comment-search-forward string))) |
