Variable: allout-encryption-ciphertext-rejection-regexps

allout-encryption-ciphertext-rejection-regexps is a buffer-local variable defined in allout.el.gz.

Documentation

Variable for regexps matching plaintext to remove before encryption.

This is used to detect strings in encryption results that would register as allout mode structural elements, for example, as a topic prefix.

Entries must be symbols that are bound to the desired regexp values.

Encryptions that result in matches will be retried, up to allout-encryption-ciphertext-rejection-ceiling times, after which an error is raised.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   = allout-encryption-ciphertext-rejection-regexps
(defvar-local allout-encryption-ciphertext-rejection-regexps nil
  "Variable for regexps matching plaintext to remove before encryption.

This is used to detect strings in encryption results that would
register as allout mode structural elements, for example, as a
topic prefix.

Entries must be symbols that are bound to the desired regexp values.

Encryptions that result in matches will be retried, up to
`allout-encryption-ciphertext-rejection-ceiling' times, after which
an error is raised.")