Variable: vc-svn-resolve-conflicts
vc-svn-resolve-conflicts is a customizable variable defined in
vc-svn.el.gz.
Value
default
Documentation
Whether to mark conflicted file as resolved upon saving.
If this is t and there are no more conflict markers in the file,
VC will mark the conflicts in the saved file as resolved.
A value of default means to use the value of vc-resolve-conflicts(var)/vc-resolve-conflicts(fun).
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defcustom vc-svn-resolve-conflicts 'default
"Whether to mark conflicted file as resolved upon saving.
If this is t and there are no more conflict markers in the file,
VC will mark the conflicts in the saved file as resolved.
A value of `default' means to use the value of `vc-resolve-conflicts'."
:type '(choice (const :tag "Don't resolve" nil)
(const :tag "Resolve" t)
(const :tag "Use vc-resolve-conflicts" default))
:version "31.1")