Function: mml-compute-boundary
mml-compute-boundary is an autoloaded and byte-compiled function
defined in mml.el.gz.
Signature
(mml-compute-boundary CONT)
Documentation
Return a unique boundary that does not exist in CONT.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(defun mml-compute-boundary (cont)
"Return a unique boundary that does not exist in CONT."
(let ((mml-boundary (funcall mml-boundary-function
(cl-incf mml-multipart-number))))
(unless mml-inhibit-compute-boundary
;; This function tries again and again until it has found
;; a unique boundary.
(while (not (catch 'not-unique
(mml-compute-boundary-1 cont)))))
mml-boundary))