Function: rfc2047-decode-address-region

rfc2047-decode-address-region is a byte-compiled function defined in rfc2047.el.gz.

Signature

(rfc2047-decode-address-region START END)

Documentation

Decode MIME-encoded words in region between START and END.

Backslashes which precede characters other than " and \ in quoted strings are stripped.

Aliases

mail-decode-encoded-address-region

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rfc2047.el.gz
(defun rfc2047-decode-address-region (start end)
  "Decode MIME-encoded words in region between START and END.
Backslashes which precede characters other than `\"' and `\\' in quoted
strings are stripped."
  (rfc2047-decode-region start end t))