Function: vc-message-unresolved-conflicts

vc-message-unresolved-conflicts is an autoloaded and byte-compiled function defined in vc.el.gz.

Signature

(vc-message-unresolved-conflicts FILENAME)

Documentation

Display a message indicating unresolved conflicts in FILENAME.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
;;;###autoload
(defun vc-message-unresolved-conflicts (filename)
  "Display a message indicating unresolved conflicts in FILENAME."
  ;; This enables all VC backends to give a standard, recognizable
  ;; conflict message that indicates which file is conflicted.
  (message "There are unresolved conflicts in %s" filename))