From: ShengHuo ZHU Date: Tue, 5 Mar 2002 19:26:30 +0000 (+0000) Subject: * qp.el (quoted-printable-decode-region): Doc addition. X-Git-Tag: ttn-vms-21-2-B4~16313 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5c543a33a215f9d34efc372b560e97ad63a23d29;p=emacs.git * qp.el (quoted-printable-decode-region): Doc addition. From: Eli Zaretskii --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 6c361dfa799..f661f4d2427 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2002-03-05 ShengHuo ZHU + + * qp.el (quoted-printable-decode-region): Doc addition. + From: Eli Zaretskii + 2002-02-21 ShengHuo ZHU * gnus-art.el (gnus-article-edit-done): Widen the article buffer. diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el index e7bff13b918..8fd0053a812 100644 --- a/lisp/gnus/qp.el +++ b/lisp/gnus/qp.el @@ -35,7 +35,10 @@ (defun quoted-printable-decode-region (from to &optional coding-system) "Decode quoted-printable in the region between FROM and TO, per RFC 2045. If CODING-SYSTEM is non-nil, decode bytes into characters with that -coding-system." +coding-system. + +Interactively, you can supply the CODING-SYSTEM argument +with \\[universal-coding-system-argument]." (interactive ;; Let the user determine the coding system with "C-x RET c". (list (region-beginning) (region-end) coding-system-for-read))