# HG changeset patch # User Eli Zaretskii # Date 992867806 0 # Node ID 282970d20daa50685f2e5f99693ecd831018eb74 # Parent 8d709c123a80712f49a0ae99ac0389c68b3904f1 (quoted-printable-decode-region): If called interactively, use coding-system-for-read. diff -r 8d709c123a80 -r 282970d20daa lisp/gnus/qp.el --- a/lisp/gnus/qp.el Mon Jun 18 12:35:18 2001 +0000 +++ b/lisp/gnus/qp.el Mon Jun 18 12:36:46 2001 +0000 @@ -36,7 +36,9 @@ "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." - (interactive "r") + (interactive + ;; Let the user determine the coding system with "C-x RET c". + (list (region-beginning) (region-end) coding-system-for-read)) (unless (mm-coding-system-p coding-system) ; e.g. `ascii' from Gnus (setq coding-system nil)) (save-excursion