1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(telnet-simple-send): Fix previous change.

This commit is contained in:
Richard M. Stallman 2002-01-17 01:40:04 +00:00
parent 754dfe82dc
commit ff78c7214c

View file

@ -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)))