# HG changeset patch # User ShengHuo ZHU # Date 1015356390 0 # Node ID 4f7c660e6029773434f0f04462bb5681ed77ca2c # Parent 264efb189de1fcf8a0f24580eb14ea7f86bad4c9 * qp.el (quoted-printable-decode-region): Doc addition. From: Eli Zaretskii diff -r 264efb189de1 -r 4f7c660e6029 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Mar 05 19:00:35 2002 +0000 +++ b/lisp/gnus/ChangeLog Tue Mar 05 19:26:30 2002 +0000 @@ -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 -r 264efb189de1 -r 4f7c660e6029 lisp/gnus/qp.el --- a/lisp/gnus/qp.el Tue Mar 05 19:00:35 2002 +0000 +++ b/lisp/gnus/qp.el Tue Mar 05 19:26:30 2002 +0000 @@ -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))