Function: allout-inhibit-auto-save-info-for-decryption

allout-inhibit-auto-save-info-for-decryption is a byte-compiled function defined in allout.el.gz.

Signature

(allout-inhibit-auto-save-info-for-decryption WAS-BUFFER-SAVED-SIZE)

Documentation

Temporarily prevent auto-saves in this buffer when an item is decrypted.

WAS-BUFFER-SAVED-SIZE is the value of buffer-saved-size *before* the decryption.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  > allout-inhibit-auto-save-info-for-decryption
(defun allout-inhibit-auto-save-info-for-decryption (was-buffer-saved-size)
  "Temporarily prevent auto-saves in this buffer when an item is decrypted.

WAS-BUFFER-SAVED-SIZE is the value of `buffer-saved-size' *before*
the decryption."
  (when (not (or (= buffer-saved-size -1) (= was-buffer-saved-size -1)))
    (setq allout-auto-save-temporarily-disabled was-buffer-saved-size
          buffer-saved-size -1)))