Function: mml-make-boundary
mml-make-boundary is a byte-compiled function defined in mml.el.gz.
Signature
(mml-make-boundary NUMBER)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(defun mml-make-boundary (number)
(concat (make-string (% number 60) ?=)
(if (> number 17)
(format "%x" number)
"")
mml-base-boundary))