* qp.el (quoted-printable-decode-region): Doc addition.
authorShengHuo ZHU <zsh@cs.rochester.edu>
Tue, 5 Mar 2002 19:30:58 +0000 (19:30 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Tue, 5 Mar 2002 19:30:58 +0000 (19:30 +0000)
From: Eli Zaretskii <eliz@is.elta.co.il>

lisp/ChangeLog
lisp/qp.el

index 7140236..c3f5577 100644 (file)
@@ -1,5 +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>
+
        * mail-source.el (make-source-make-complex-temp-name): Use
        make-temp-file.
 
index 8c3b828..3a4d492 100644 (file)
 (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))