]> git.eshelyaron.com Git - emacs.git/commitdiff
rfc2047.el (rfc2047-encode-parameter): Doc fix.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 20 Sep 2010 23:44:05 +0000 (23:44 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 20 Sep 2010 23:44:05 +0000 (23:44 +0000)
emacs-mime.texi (rfc2047): Update description for rfc2047-encode-parameter.

doc/misc/ChangeLog
doc/misc/emacs-mime.texi
lisp/gnus/ChangeLog
lisp/gnus/rfc2047.el

index d8346259c6fef2f1d32873f4ef0a5631bde0bd41..68d6d3c8f0007b8fa986079e03c1f18f5cad1e54 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * emacs-mime.texi (rfc2047): Update description for
+       rfc2047-encode-parameter.
+
 2010-09-13  Michael Albinus  <michael.albinus@gmx.de>
 
        * tramp.texi (Inline methods): Remove "ssh1_old", "ssh2_old" and
index 3e996e945fbead67b43ad2a3dd7b567ce7c51645..2a0e8569266f84cc0dfe6d8dd1b35076f9d3f610 100644 (file)
@@ -1469,21 +1469,9 @@ Decode a string and return the results.
 
 @item rfc2047-encode-parameter
 @findex rfc2047-encode-parameter
-Encode a parameter in the RFC2047-like style.  This is a replacement for
-the @code{rfc2231-encode-string} function.  @xref{rfc2231}.
-
-When attaching files as @acronym{MIME} parts, we should use the RFC2231
-encoding to specify the file names containing non-@acronym{ASCII}
-characters.  However, many mail softwares don't support it in practice
-and recipients won't be able to extract files with correct names.
-Instead, the RFC2047-like encoding is acceptable generally.  This
-function provides the very RFC2047-like encoding, resigning to such a
-regrettable trend.  To use it, put the following line in your
-@file{~/.gnus.el} file:
-
-@lisp
-(defalias 'mail-header-encode-parameter 'rfc2047-encode-parameter)
-@end lisp
+Encode a parameter in the RFC2047-like style.  This is a substitution
+for the @code{rfc2231-encode-string} function, that is the standard but
+many mailers don't support it.  @xref{rfc2231}.
 
 @end table
 
index dd54343616b225ee2f1e9f4f9688585c250ac356..b85618ae7055944b39c8650b87c30c9315ffddf3 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * rfc2047.el (rfc2047-encode-parameter): Doc fix.
+
 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * nnimap.el (nnimap-request-group): Don't select the imap buffer before
index 628423050b97a1b1ba61cc7dd71a29bc9f590889..4fd1086ace0feb21f8509eafdefdceb4af1b9f38 100644 (file)
@@ -851,18 +851,8 @@ Point moves to the end of the region."
 
 (defun rfc2047-encode-parameter (param value)
   "Return and PARAM=VALUE string encoded in the RFC2047-like style.
-This is a replacement for the `rfc2231-encode-string' function.
-
-When attaching files as MIME parts, we should use the RFC2231 encoding
-to specify the file names containing non-ASCII characters.  However,
-many mail softwares don't support it in practice and recipients won't
-be able to extract files with correct names.  Instead, the RFC2047-like
-encoding is acceptable generally.  This function provides the very
-RFC2047-like encoding, resigning to such a regrettable trend.  To use
-it, put the following line in your ~/.gnus.el file:
-
-\(defalias 'mail-header-encode-parameter 'rfc2047-encode-parameter)
-"
+This is a substitution for the `rfc2231-encode-string' function, that
+is the standard but many mailers don't support it."
   (let ((rfc2047-encoding-type 'mime)
        (rfc2047-encode-max-chars nil))
     (rfc2045-encode-string param (rfc2047-encode-string value))))