Function: jka-compr-write-region
jka-compr-write-region is a byte-compiled function defined in
jka-compr.el.gz.
Signature
(jka-compr-write-region START END FILE &optional APPEND VISIT LOCKNAME MUSTBENEW)
Source Code
;; Defined in /usr/src/emacs/lisp/jka-compr.el.gz
(defun jka-compr-write-region (start end file &optional
append visit lockname mustbenew)
(let* ((filename (expand-file-name file))
(visit-file (if (stringp visit) (expand-file-name visit) filename))
(info (jka-compr-get-compression-info visit-file))
(magic (and info (jka-compr-info-file-magic-bytes info))))
;; If we uncompressed this file when visiting it,
;; then recompress it when writing it
;; even if the contents look compressed already.
(if (and jka-compr-really-do-compress
(or (null start)
(= (- end start) (buffer-size))))
(setq magic nil))
(if (and info
;; If the contents to be written out
;; are properly compressed already,
;; don't try to compress them over again.
(not (and magic
(equal (if (stringp start)
(substring start 0 (min (length start)
(length magic)))
(let* ((from (or start (point-min)))
(to (min (or end (point-max))
(+ from (length magic)))))
(buffer-substring from to)))
magic))))
(let ((can-append (jka-compr-info-can-append info))
(compress-program (jka-compr-info-compress-program info))
(compress-message (jka-compr-info-compress-message info))
(compress-args (jka-compr-info-compress-args info))
(base-name (file-name-nondirectory visit-file))
temp-file temp-buffer
;; we need to leave `last-coding-system-used' set to its
;; value after calling write-region the first time, so
;; that `basic-save-buffer' sees the right value.
(coding-system-used last-coding-system-used))
(or compress-program
(error "No compression program defined"))
(setq temp-buffer (get-buffer-create " *jka-compr-wr-temp*"))
(with-current-buffer temp-buffer
(widen) (erase-buffer))
(if (and append
(not can-append)
(file-exists-p filename))
(let* ((local-copy (file-local-copy filename))
(local-file (or local-copy filename)))
(setq temp-file local-file))
(setq temp-file (jka-compr-make-temp-name)))
(and
compress-message
jka-compr-verbose
(message "%s %s..." compress-message base-name))
(jka-compr-run-real-handler 'write-region
(list start end temp-file t 'dont))
;; save value used by the real write-region
(setq coding-system-used last-coding-system-used)
;; Here we must read the output of compress program as is
;; without any code conversion.
(let ((coding-system-for-read 'no-conversion))
(jka-compr-call-process compress-program
(concat compress-message
" " base-name)
temp-file
temp-buffer
nil
compress-args))
(with-current-buffer temp-buffer
(let ((coding-system-for-write 'no-conversion))
(jka-compr-run-real-handler 'write-region
(list (point-min) (point-max)
filename
(and append can-append) 'dont
lockname mustbenew))
(erase-buffer)) )
(delete-file temp-file)
(and
compress-message
jka-compr-verbose
(message "%s %s...done" compress-message base-name))
(cond
((eq visit t)
(setq buffer-file-name filename)
(setq jka-compr-really-do-compress t)
(set-visited-file-modtime))
((stringp visit)
(setq buffer-file-name visit)
(let ((buffer-file-name filename))
(set-visited-file-modtime))))
(and (or (eq visit t)
(eq visit nil)
(stringp visit))
(message "Wrote %s" visit-file))
;; ensure `last-coding-system-used' has an appropriate value
(setq last-coding-system-used coding-system-used)
nil)
(jka-compr-run-real-handler 'write-region
(list start end filename append visit
lockname mustbenew)))))