Function: emerge-query-write-file

emerge-query-write-file is an interactive and byte-compiled function defined in emerge.el.gz.

Signature

(emerge-query-write-file)

Documentation

Ask the user whether to write out an incomplete merge.

If answer is yes, call write-file to do so. See emerge-query-and-call for details of the querying process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
;;; Functions that query the user before he can write out the current buffer.

(defun emerge-query-write-file ()
  "Ask the user whether to write out an incomplete merge.
If answer is yes, call `write-file' to do so.  See `emerge-query-and-call'
for details of the querying process."
  (interactive)
  (emerge-query-and-call 'write-file))