* pop3.el (pop3-stream-type): Fix custom version.
authorReiner Steib <Reiner.Steib@gmx.de>
Fri, 9 Dec 2005 18:51:22 +0000 (18:51 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Fri, 9 Dec 2005 18:51:22 +0000 (18:51 +0000)
* mm-uu.el (mm-uu-type-alist): Simplify uu regexp.

lisp/ChangeLog
lisp/mm-uu.el
lisp/pop3.el

index 11c84c7..9bfede6 100644 (file)
@@ -1,3 +1,9 @@
+2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
+
+       * pop3.el (pop3-stream-type): Fix custom version.
+
+       * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
+
 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
 
        * mm-decode.el (mm-display-external): Add lacked cdr.
index 212d318..ad9fc38 100644 (file)
@@ -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
index 1c9dc80..cf2ad9c 100644 (file)
@@ -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)