From: Stefan Monnier Date: Mon, 8 Apr 2002 22:54:56 +0000 (+0000) Subject: (pop3-md5): Don't hardcode point-min == 1. X-Git-Tag: ttn-vms-21-2-B4~15735 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7524d5cee6309685010bc8a1b482ff27672fc038;p=emacs.git (pop3-md5): Don't hardcode point-min == 1. --- diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index 99148388aa8..0a182b47ca7 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el @@ -332,7 +332,7 @@ If NOW, use that time instead." t (current-buffer) nil) ;; The meaningful output is the first 32 characters. ;; Don't return the newline that follows them! - (buffer-substring 1 33))))) + (buffer-substring (point-min) (+ 32 (point-min))))))) (defun pop3-stat (process) "Return the number of messages in the maildrop and the maildrop's size."