comparison lisp/gnus/rfc2047.el @ 31764:54ae1def18cf

Merge from Gnus trunk.
author Dave Love <fx@gnu.org>
date Wed, 20 Sep 2000 11:46:48 +0000
parents 6b20b7e85e3c
children eca95f9d7f05
comparison
equal deleted inserted replaced
31763:1d2b57dffb60 31764:54ae1def18cf
77 (B . rfc2047-b-encode-region) 77 (B . rfc2047-b-encode-region)
78 (nil . ignore)) 78 (nil . ignore))
79 "Alist of RFC2047 encodings to encoding functions.") 79 "Alist of RFC2047 encodings to encoding functions.")
80 80
81 (defvar rfc2047-q-encoding-alist 81 (defvar rfc2047-q-encoding-alist
82 '(("\\(From\\|Cc\\|To\\|Bcc\||Reply-To\\):" . "-A-Za-z0-9!*+/=_") 82 '(("\\(From\\|Cc\\|To\\|Bcc\||Reply-To\\):" . "-A-Za-z0-9!*+/")
83 ("." . "^\000-\007\011\013\015-\037\200-\377=_?")) 83 ;; = (\075), _ (\137), ? (\077) are used in the encoded word.
84 ;; Avoid using 8bit characters. Some versions of Emacs has bug!
85 ;; Equivalent to "^\000-\007\011\013\015-\037\200-\377=_?"
86 ("." . "\010\012\014\040-\074\076\100-\136\140-\177"))
84 "Alist of header regexps and valid Q characters.") 87 "Alist of header regexps and valid Q characters.")
85 88
86 ;;; 89 ;;;
87 ;;; Functions for encoding RFC2047 messages 90 ;;; Functions for encoding RFC2047 messages
88 ;;; 91 ;;;