diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-02-04 00:21:59 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-02-04 00:21:59 +0100 |
| commit | e959ab1057016fd1759b9b4a930eca8aa71828ef (patch) | |
| tree | 01a40f12aff01618cd0b34a7cfcbbc6232b6b40a /lisp/git-commit.el | |
| parent | 0cce8f7a94f4f4ae4fd85ba2702658d567ecea24 (diff) | |
Let the byte-compiler check more function references
The sequel. Part 1 was [1: 7f47299581].
1: 2025-01-05 7f47299581abb6f77870cb5abdae159fcd35b3d5
Let the byte-compiler check more function references
Diffstat (limited to 'lisp/git-commit.el')
| -rw-r--r-- | lisp/git-commit.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/git-commit.el b/lisp/git-commit.el index d1cbd9b..aa5413f 100644 --- a/lisp/git-commit.el +++ b/lisp/git-commit.el @@ -194,12 +194,12 @@ The major mode configured here is turned on by the minor mode Also note that `git-commit-mode' (which see) is not a major-mode.") (defcustom git-commit-setup-hook - '(git-commit-ensure-comment-gap - git-commit-save-message - git-commit-setup-changelog-support - git-commit-turn-on-auto-fill - git-commit-propertize-diff - bug-reference-mode) + (list #'git-commit-ensure-comment-gap + #'git-commit-save-message + #'git-commit-setup-changelog-support + #'git-commit-turn-on-auto-fill + #'git-commit-propertize-diff + #'bug-reference-mode) "Hook run at the end of `git-commit-setup'." :group 'git-commit :type 'hook @@ -245,7 +245,7 @@ commit, then the hook is not run at all." :type 'number) (defcustom git-commit-finish-query-functions - '(git-commit-check-style-conventions) + (list #'git-commit-check-style-conventions) "List of functions called to query before performing commit. The commit message buffer is current while the functions are |
