Variable: vc-log-view-type
vc-log-view-type is a variable defined in vc.el.gz.
Value
nil
Documentation
Set this to record the type of VC log shown in the current buffer.
Supported values are:
short -- short log form, one line for each commit
long -- long log form, including full log message and author
with-diff -- log including diffs
log-outgoing -- log of changes to be pushed to upstream
log-incoming -- log of changes to be brought by pulling from upstream
log-search -- log entries matching a pattern; shown in long format
mergebase -- log created by vc-log-mergebase.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defvar vc-log-view-type nil
"Set this to record the type of VC log shown in the current buffer.
Supported values are:
`short' -- short log form, one line for each commit
`long' -- long log form, including full log message and author
`with-diff' -- log including diffs
`log-outgoing' -- log of changes to be pushed to upstream
`log-incoming' -- log of changes to be brought by pulling from upstream
`log-search' -- log entries matching a pattern; shown in long format
`mergebase' -- log created by `vc-log-mergebase'.")