1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-28 19:42:02 +00:00

(pop3-md5): Don't hardcode point-min == 1.

This commit is contained in:
Stefan Monnier 2002-04-08 22:54:56 +00:00
parent 33182c8a9e
commit 7524d5cee6

View File

@ -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."