diff options
| author | Sean Whitton | 2025-11-10 15:14:13 +0000 |
|---|---|---|
| committer | Sean Whitton | 2025-11-10 15:14:33 +0000 |
| commit | af9a137fe83f28decac03fcebec3ca3020e910de (patch) | |
| tree | caf6bb67a890a63e0cd0a7dca87eb466371695ff | |
| parent | 1772a4e468c4436e07ab4ea7098e9712c8dcae2d (diff) | |
| download | emacs-af9a137fe83f28decac03fcebec3ca3020e910de.tar.gz emacs-af9a137fe83f28decac03fcebec3ca3020e910de.zip | |
; vc-start-logentry: Require log-edit (bug#79803)
* lisp/vc/vc-dispatcher.el (vc-start-logentry):
Require log-edit (bug#79803).
| -rw-r--r-- | lisp/vc/vc-dispatcher.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc/vc-dispatcher.el b/lisp/vc/vc-dispatcher.el index 8d23ab13edd..39db738894a 100644 --- a/lisp/vc/vc-dispatcher.el +++ b/lisp/vc/vc-dispatcher.el | |||
| @@ -870,7 +870,8 @@ DIFF-FUNCTION is `log-edit-diff-function' for the Log Edit buffer." | |||
| 870 | ;; `log-edit-show-files' and `log-edit-maybe-show-diff' which | 870 | ;; `log-edit-show-files' and `log-edit-maybe-show-diff' which |
| 871 | ;; don't make sense if the user is not going to do any | 871 | ;; don't make sense if the user is not going to do any |
| 872 | ;; editing, and can cause unexpected window layout changes. | 872 | ;; editing, and can cause unexpected window layout changes. |
| 873 | (log-edit-hook (and (not immediate) log-edit-hook))) | 873 | (log-edit-hook (and (not immediate) |
| 874 | (require 'log-edit) log-edit-hook))) | ||
| 874 | (vc-log-edit files mode backend diff-function)) | 875 | (vc-log-edit files mode backend diff-function)) |
| 875 | (make-local-variable 'vc-log-after-operation-hook) | 876 | (make-local-variable 'vc-log-after-operation-hook) |
| 876 | (when after-hook | 877 | (when after-hook |