Function: rfc1843-decode-string

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

Signature

(rfc1843-decode-string STRING)

Documentation

Decode HZ STRING and return the results.

Source Code

;; Defined in /usr/src/emacs/lisp/international/rfc1843.el.gz
(defun rfc1843-decode-string (string)
  "Decode HZ STRING and return the results."
  (let ((m enable-multibyte-characters))
    (with-temp-buffer
      (when m
	(set-buffer-multibyte 'to))
      (insert string)
      (inline
	(rfc1843-decode-region (point-min) (point-max)))
      (buffer-string))))