From: yamaoka Date: Tue, 20 Apr 1999 10:24:54 +0000 (+0000) Subject: * gnus.el (gnus-revision-number): Increment to 01. X-Git-Tag: t-gnus-6_10_063-01~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b2afb4abc67cf01bd6fcc6cfe912ece39b3dd5d7;p=elisp%2Fgnus.git- * gnus.el (gnus-revision-number): Increment to 01. * pop3.el (pop3-munge-message-separator): Don't put the Content-Length field break into the other fields. --- diff --git a/lisp/gnus.el b/lisp/gnus.el index 42f3064..d6f1c5e 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -267,7 +267,7 @@ is restarted, and sometimes reloaded." (defconst gnus-version-number "6.10.063" "Version number for this version of gnus.") -(defconst gnus-revision-number "00" +(defconst gnus-revision-number "01" "Revision number for this version of gnus.") (defconst gnus-original-version-number "0.83" diff --git a/lisp/pop3.el b/lisp/pop3.el index c111d13..fb37155 100644 --- a/lisp/pop3.el +++ b/lisp/pop3.el @@ -230,7 +230,7 @@ Return the response string if optional second argument is non-nil." (let ((size (- (point-max) (point-min)))) (goto-char (point-min)) (widen) - (forward-line -2) + (forward-line -1) (insert (format "Content-Length: %s\n" size))) )))))