Function: log-edit-diff-fileset
log-edit-diff-fileset is an interactive and byte-compiled function
defined in log-edit.el.gz.
Signature
(log-edit-diff-fileset)
Documentation
Display diffs for the files to be committed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-diff-fileset ()
"Display diffs for the files to be committed."
(interactive)
;; Re NOT-ESSENTIAL non-nil: this function can get called from
;; `log-edit-hook' and we don't want to abort the whole Log Edit setup
;; because the user says no to saving a buffer. The buffers will
;; still actually get saved before committing, by the
;; `vc-log-operation' anonymous function. Possibly
;; `log-edit-maybe-show-diff' should catch the error instead.
(vc-diff nil 'not-essential (list log-edit-vc-backend vc-log-fileset)))