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/pop3.el | |
parent | 7d4cc82846d8a6eace629f4dd9a47a2f43473d6e (diff) | |
download | emacs-d3b055c20aaa05d070ab6cafaaf91b1fd4594162.tar.gz |
(pop3-open-server): Fix typo.
Diffstat (limited to 'lisp/gnus/pop3.el')
-rw-r--r-- | lisp/gnus/pop3.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |