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

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

index 6c361dfa7998d6d026c1a088f13112f745e30853..f661f4d242708a5fee729664ff346c09786750a1 100644 (file)
@@ -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.
index e7bff13b918f85bb5708f0c95b816f6fb36eac1d..8fd0053a812f68f000db991301c1491bb15d15f7 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))