X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Fqp.el;h=52f699937e261cc5f742c378b85989ebc382ec18;hb=47bc3a7ccbdea93f85546cfac45ee9ebdb32d310;hp=13882fdb84f7835e147facf4096b6a5c890a30be;hpb=f1e4bf064c52e0c9aae97f147088b62ffe83f02a;p=elisp%2Fgnus.git- diff --git a/lisp/qp.el b/lisp/qp.el index 13882fd..52f6999 100644 --- a/lisp/qp.el +++ b/lisp/qp.el @@ -35,7 +35,10 @@ (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)) @@ -65,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)) )) @@ -137,7 +140,7 @@ encode lines starting with \"From\"." (if (looking-at "From ") (replace-match "From=20" nil t) (if (looking-at "-") - (replace-match "=2D" nil t)))) + (replace-match "=2D" nil t)))) (end-of-line) ;; Fold long lines. (while (> (current-column) 76) ; tab-width must be 1.