diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-04-12 14:32:09 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-04-12 14:32:09 +0000 |
commit | d3b055c20aaa05d070ab6cafaaf91b1fd4594162 (patch) | |
tree | 5a833deb65ffae57ee33f8c883e38e78d2df335d /lisp/gnus | |
parent | 7d4cc82846d8a6eace629f4dd9a47a2f43473d6e (diff) | |
download | emacs-d3b055c20aaa05d070ab6cafaaf91b1fd4594162.tar.gz |
(pop3-open-server): Fix typo.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/gnus/pop3.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ff3a35fb97c..5c3f0590791 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,7 @@ +2002-04-12 Juanma Barranquero <lektu@terra.es> + + * pop3.el (pop3-open-server): Fix typo. + 2002-04-12 ShengHuo ZHU <zsh@cs.rochester.edu> * pop3.el (pop3-munge-message-separator): Work if no date. diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index f00e0daf835..192c8f332dd 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el @@ -139,7 +139,7 @@ Returns the process associated with the connection." mailhost))) (erase-buffer) (setq pop3-read-point (point-min)) - (setq process (open-network-stream "POP"(current-buffer) mailhost port)) + (setq process (open-network-stream "POP" (current-buffer) mailhost port)) (let ((response (pop3-read-response process t))) (setq pop3-timestamp (substring response (or (string-match "<" response) 0) |