Function: rfc2047-decode-address-string

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

Signature

(rfc2047-decode-address-string STRING)

Documentation

Decode MIME-encoded STRING and return the result.

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

Aliases

mail-decode-encoded-address-string

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rfc2047.el.gz
(defun rfc2047-decode-address-string (string)
  "Decode MIME-encoded STRING and return the result.
Backslashes which precede characters other than `\"' and `\\' in quoted
strings are stripped."
  (rfc2047-decode-string string t))