Function: tar-write-region-annotate
tar-write-region-annotate is a byte-compiled function defined in
tar-mode.el.gz.
Signature
(tar-write-region-annotate START END)
Source Code
;; Defined in /usr/src/emacs/lisp/tar-mode.el.gz
;; Used in write-region-annotate-functions to write tar-files out correctly.
(defun tar-write-region-annotate (start _end)
;; When called from write-file (and auto-save), `start' is nil.
;; When called from M-x write-region, we assume the user wants to save
;; (part of) the summary, not the tar data.
(unless (or start (not (tar-data-swapped-p)))
(tar-clear-modification-flags)
(set-buffer tar-data-buffer)
nil))