Function: rfc2047-fold-field
rfc2047-fold-field is a byte-compiled function defined in
rfc2047.el.gz.
Signature
(rfc2047-fold-field)
Documentation
Fold the current header field.
Return the new end point.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rfc2047.el.gz
(defun rfc2047-fold-field ()
"Fold the current header field.
Return the new end point."
(save-excursion
(save-restriction
(rfc2047-narrow-to-field)
(rfc2047-fold-region (point-min) (point-max))
(point-max))))