comparison doc/misc/emacs-mime.texi @ 87097:781256628613

Merge from gnus--devo--0 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-941
author Miles Bader <miles@gnu.org>
date Thu, 06 Dec 2007 00:21:00 +0000
parents a3c27999decb
children 5d58981e6690
comparison
equal deleted inserted replaced
87096:a99a2e8bc21e 87097:781256628613
1415 1415
1416 @item rfc2047-encoded-word-regexp 1416 @item rfc2047-encoded-word-regexp
1417 @vindex rfc2047-encoded-word-regexp 1417 @vindex rfc2047-encoded-word-regexp
1418 When decoding words, this library looks for matches to this regexp. 1418 When decoding words, this library looks for matches to this regexp.
1419 1419
1420 @item rfc2047-encoded-word-regexp-loose
1421 @vindex rfc2047-encoded-word-regexp-loose
1422 This is a version from which the regexp for the Q encoding pattern of
1423 @code{rfc2047-encoded-word-regexp} is made loose.
1424
1420 @item rfc2047-encode-encoded-words 1425 @item rfc2047-encode-encoded-words
1421 @vindex rfc2047-encode-encoded-words 1426 @vindex rfc2047-encode-encoded-words
1422 The boolean variable specifies whether encoded words 1427 The boolean variable specifies whether encoded words
1423 (e.g. @samp{=?hello?=}) should be encoded again. 1428 (e.g. @samp{=?us-ascii?q?hello?=}) should be encoded again.
1429 @code{rfc2047-encoded-word-regexp} is used to look for such words.
1430
1431 @item rfc2047-allow-irregular-q-encoded-words
1432 @vindex rfc2047-allow-irregular-q-encoded-words
1433 The boolean variable specifies whether irregular Q encoded words
1434 (e.g. @samp{=?us-ascii?q?hello??=}) should be decoded. If it is
1435 non-@code{nil}, @code{rfc2047-encoded-word-regexp-loose} is used instead
1436 of @code{rfc2047-encoded-word-regexp} to look for encoded words.
1424 1437
1425 @end table 1438 @end table
1426 1439
1427 Those were the variables, and these are this functions: 1440 Those were the variables, and these are this functions:
1428 1441