]> git.eshelyaron.com Git - emacs.git/commitdiff
(quoted-printable-decode-region): If called interactively,
authorEli Zaretskii <eliz@gnu.org>
Mon, 18 Jun 2001 12:38:38 +0000 (12:38 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 18 Jun 2001 12:38:38 +0000 (12:38 +0000)
use coding-system-for-read.

lisp/gnus/ChangeLog
lisp/gnus/qp.el

index ef8de2910829422f6a0b56a1f9238238053cb83b..8368c4da7b05aaf7ad736ab6962e021fda18c15e 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-18  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * qp.el (quoted-printable-decode-region): If called interactively,
+       use coding-system-for-read.
+
 2001-03-30  Gerd Moellmann  <gerd@gnu.org>
 
        * gnus.el (gnus-interactive): Fix parenthesis errors.
index d4fb5152fe177bc0f130340c9da51f2146287e1c..e7bff13b918f85bb5708f0c95b816f6fb36eac1d 100644 (file)
@@ -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