Function: rfc2047-field-value
rfc2047-field-value is a byte-compiled function defined in
rfc2047.el.gz.
Signature
(rfc2047-field-value)
Documentation
Return the value of the field at point.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rfc2047.el.gz
(defun rfc2047-field-value ()
"Return the value of the field at point."
(save-excursion
(save-restriction
(rfc2047-narrow-to-field)
(re-search-forward ":[ \t\n]*" nil t)
(buffer-substring-no-properties (point) (point-max)))))