Function: allout-encrypted-type-prefix

allout-encrypted-type-prefix is a byte-compiled function defined in allout.el.gz.

Signature

(allout-encrypted-type-prefix &optional PREFIX)

Documentation

True if current header prefix bullet is for an encrypted entry (body).

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_   > allout-encrypted-type-prefix (&optional prefix)
(defun allout-encrypted-type-prefix (&optional prefix)
  "True if current header prefix bullet is for an encrypted entry (body)."
  (and allout-topic-encryption-bullet
        (string= allout-topic-encryption-bullet
                 (if prefix
                     (allout-get-prefix-bullet prefix)
                   (allout-get-bullet)))))