aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-04-08 22:54:56 +0000
committerStefan Monnier2002-04-08 22:54:56 +0000
commit7524d5cee6309685010bc8a1b482ff27672fc038 (patch)
tree76084f843fc3fa6aa5c4c624c441d38059d21ac2
parent33182c8a9e8515a8235b562176c75bac3ef9c0d0 (diff)
downloademacs-7524d5cee6309685010bc8a1b482ff27672fc038.tar.gz
emacs-7524d5cee6309685010bc8a1b482ff27672fc038.zip
(pop3-md5): Don't hardcode point-min == 1.
-rw-r--r--lisp/gnus/pop3.el2
1 files changed, 1 insertions, 1 deletions
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."
332 t (current-buffer) nil) 332 t (current-buffer) nil)
333 ;; The meaningful output is the first 32 characters. 333 ;; The meaningful output is the first 32 characters.
334 ;; Don't return the newline that follows them! 334 ;; Don't return the newline that follows them!
335 (buffer-substring 1 33))))) 335 (buffer-substring (point-min) (+ 32 (point-min)))))))
336 336
337(defun pop3-stat (process) 337(defun pop3-stat (process)
338 "Return the number of messages in the maildrop and the maildrop's size." 338 "Return the number of messages in the maildrop and the maildrop's size."