From: Reiner Steib Date: Fri, 9 Dec 2005 18:51:22 +0000 (+0000) Subject: * pop3.el (pop3-stream-type): Fix custom version. X-Git-Url: https://cgit.sxemacs.org/?a=commitdiff_plain;h=d23bd36f24154ab9e152b0dcaa4c6cf8cdb0716e;p=gnus * pop3.el (pop3-stream-type): Fix custom version. * mm-uu.el (mm-uu-type-alist): Simplify uu regexp. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 11c84c7b7..9bfede6f4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2005-12-09 Reiner Steib + + * pop3.el (pop3-stream-type): Fix custom version. + + * mm-uu.el (mm-uu-type-alist): Simplify uu regexp. + 2005-12-09 ARISAWA Akihiro (tiny change) * mm-decode.el (mm-display-external): Add lacked cdr. diff --git a/lisp/mm-uu.el b/lisp/mm-uu.el index 212d3189c..ad9fc3847 100644 --- a/lisp/mm-uu.el +++ b/lisp/mm-uu.el @@ -102,13 +102,13 @@ This can be either \"inline\" or \"attachment\".") "^%%EOF$" mm-uu-postscript-extract nil) - (uu + (uu ;; Maybe we should have a more strict test here. "^begin[ \t]+0?[0-7][0-7][0-7][ \t]+" "^end[ \t]*$" mm-uu-uu-extract mm-uu-uu-filename) (binhex - "^:...............................................................$" + "^:.\\{63,63\\}$" ":$" mm-uu-binhex-extract nil diff --git a/lisp/pop3.el b/lisp/pop3.el index 1c9dc807a..cf2ad9c2a 100644 --- a/lisp/pop3.el +++ b/lisp/pop3.el @@ -203,7 +203,7 @@ SSL/TSL-secured stream) or `starttls' (use the starttls mechanism to turn on TLS security after opening the stream). However, if this is nil, `ssl' is assumed for connexions to port 995 (pop3s)." - :version "23.1" ; fixme? + :version "23.0" ;; No Gnus :group 'pop3 :type '(choice (const :tag "Plain" nil) (const :tag "SSL/TLS" ssl)