X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Fqp.el;h=3a4d49297fdbdb30fb4e66cee3b2603fb2efd1e7;hb=88a2cbade926ab994768b63e407390a44762941c;hp=9875a0b672ab1d527da83df95bdd888aca22c95c;hpb=12880262125c73b531b08cd9005fbaf49c2c3395;p=elisp%2Fgnus.git- diff --git a/lisp/qp.el b/lisp/qp.el index 9875a0b..3a4d492 100644 --- a/lisp/qp.el +++ b/lisp/qp.el @@ -35,8 +35,13 @@ (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." - (interactive "r") +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)) (unless (mm-coding-system-p coding-system) ; e.g. `ascii' from Gnus (setq coding-system nil)) (save-excursion @@ -63,7 +68,7 @@ coding-system." 16))) (insert byte) (delete-char 3) - ;; Why backward-char??? + ;; Why backward-char??? ;;(unless (eq byte 61) ;; 61 is not ?= in XEmacs ;; (backward-char)) ))