1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-11 09:21:23 -07:00

; vc-start-logentry: Require log-edit (bug#79803)

* lisp/vc/vc-dispatcher.el (vc-start-logentry):
Require log-edit (bug#79803).
This commit is contained in:
Sean Whitton 2025-11-10 15:14:13 +00:00
parent 1772a4e468
commit af9a137fe8

View file

@ -870,7 +870,8 @@ DIFF-FUNCTION is `log-edit-diff-function' for the Log Edit buffer."
;; `log-edit-show-files' and `log-edit-maybe-show-diff' which
;; don't make sense if the user is not going to do any
;; editing, and can cause unexpected window layout changes.
(log-edit-hook (and (not immediate) log-edit-hook)))
(log-edit-hook (and (not immediate)
(require 'log-edit) log-edit-hook)))
(vc-log-edit files mode backend diff-function))
(make-local-variable 'vc-log-after-operation-hook)
(when after-hook