changeset 42800:327786c48101

(telnet-simple-send): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 17 Jan 2002 01:40:04 +0000
parents 2f56e7fc793a
children b719a1276b31
files lisp/net/telnet.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/telnet.el	Thu Jan 17 01:39:49 2002 +0000
+++ b/lisp/net/telnet.el	Thu Jan 17 01:40:04 2002 +0000
@@ -155,7 +155,7 @@
 (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)))