Variable: log-edit-diff-function

log-edit-diff-function is a variable defined in log-edit.el.gz.

Value

#[0 "\300\301!\207" [error "Diff functionality has not been set up"] 2]

Documentation

Function to display an appropriate diff-mode buffer for the change.

Called by log-edit-show-diff and log-edit-maybe-show-diff. The function should display the buffer in a window and leave that window selected when it returns, probably by calling pop-to-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defvar log-edit-diff-function
  (lambda () (error "Diff functionality has not been set up"))
  "Function to display an appropriate `diff-mode' buffer for the change.
Called by `log-edit-show-diff' and `log-edit-maybe-show-diff'.
The function should display the buffer in a window and leave that window
selected when it returns, probably by calling `pop-to-buffer'.")