From: Richard M. Stallman Date: Thu, 17 Jan 2002 01:40:04 +0000 (+0000) Subject: (telnet-simple-send): Fix previous change. X-Git-Tag: ttn-vms-21-2-B4~17105 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff78c7214c8d3f39a55a080427d51d0378ae45cf;p=emacs.git (telnet-simple-send): Fix previous change. --- diff --git a/lisp/net/telnet.el b/lisp/net/telnet.el index 8cdc2884bab..abfd5b582ac 100644 --- a/lisp/net/telnet.el +++ b/lisp/net/telnet.el @@ -155,7 +155,7 @@ rejecting one login and prompting again for a username and password.") (defun telnet-simple-send (proc string) (comint-send-string proc string) (if comint-input-sender-no-newline - (if (not (string-equal input "")) + (if (not (string-equal string "")) (process-send-eof)) (comint-send-string proc telnet-new-line)))