Mercurial > emacs
changeset 43737:4f7c660e6029
* qp.el (quoted-printable-decode-region): Doc addition.
From: Eli Zaretskii <eliz@is.elta.co.il>
author | ShengHuo ZHU <zsh@cs.rochester.edu> |
---|---|
date | Tue, 05 Mar 2002 19:26:30 +0000 |
parents | 264efb189de1 |
children | c32d1082ee0e |
files | lisp/gnus/ChangeLog lisp/gnus/qp.el |
diffstat | 2 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <zsh@cs.rochester.edu> + + * qp.el (quoted-printable-decode-region): Doc addition. + From: Eli Zaretskii <eliz@is.elta.co.il> + 2002-02-21 ShengHuo ZHU <zsh@cs.rochester.edu> * gnus-art.el (gnus-article-edit-done): Widen the article buffer.
--- 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))