[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/gnus/pop3.el
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/gnus/pop3.el |
Date: |
Mon, 08 Apr 2002 18:54:56 -0400 |
Index: emacs/lisp/gnus/pop3.el
diff -c emacs/lisp/gnus/pop3.el:1.17 emacs/lisp/gnus/pop3.el:1.18
*** emacs/lisp/gnus/pop3.el:1.17 Sun Jul 15 12:15:34 2001
--- emacs/lisp/gnus/pop3.el Mon Apr 8 18:54:56 2002
***************
*** 332,338 ****
t (current-buffer) nil)
;; The meaningful output is the first 32 characters.
;; Don't return the newline that follows them!
! (buffer-substring 1 33)))))
(defun pop3-stat (process)
"Return the number of messages in the maildrop and the maildrop's size."
--- 332,338 ----
t (current-buffer) nil)
;; The meaningful output is the first 32 characters.
;; Don't return the newline that follows them!
! (buffer-substring (point-min) (+ 32 (point-min)))))))
(defun pop3-stat (process)
"Return the number of messages in the maildrop and the maildrop's size."
- [Emacs-diffs] Changes to emacs/lisp/gnus/pop3.el,
Stefan Monnier <=