Function: allout-encrypted-topic-p

allout-encrypted-topic-p is a byte-compiled function defined in allout.el.gz.

Signature

(allout-encrypted-topic-p)

Documentation

True if the current topic is encryptable and encrypted.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  > allout-encrypted-topic-p ()
(defun allout-encrypted-topic-p ()
  "True if the current topic is encryptable and encrypted."
  (save-excursion
    (allout-end-of-prefix t)
    (and (string= (buffer-substring-no-properties (1- (point)) (point))
                  allout-topic-encryption-bullet)
         (save-match-data (looking-at "\\*")))
    )
  )