Function: quoted-printable-encode-string

quoted-printable-encode-string is a byte-compiled function defined in qp.el.gz.

Signature

(quoted-printable-encode-string STRING)

Documentation

Encode the STRING as quoted-printable and return the result.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/qp.el.gz
(defun quoted-printable-encode-string (string)
  "Encode the STRING as quoted-printable and return the result."
  (with-temp-buffer
    (if (multibyte-string-p string)
	(set-buffer-multibyte 'to)
      (set-buffer-multibyte nil))
    (insert string)
    (quoted-printable-encode-region (point-min) (point-max))
    (buffer-string)))