diff options
| author | Richard M. Stallman | 2002-01-17 01:40:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-17 01:40:04 +0000 |
| commit | ff78c7214c8d3f39a55a080427d51d0378ae45cf (patch) | |
| tree | 99cc4a4e97d0dde6e68a7e812857037f468ece63 /lisp | |
| parent | 754dfe82dc8764393872a33982e2efe9c70211ab (diff) | |
| download | emacs-ff78c7214c8d3f39a55a080427d51d0378ae45cf.tar.gz emacs-ff78c7214c8d3f39a55a080427d51d0378ae45cf.zip | |
(telnet-simple-send): Fix previous change.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/net/telnet.el | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 155 | (defun telnet-simple-send (proc string) | 155 | (defun telnet-simple-send (proc string) |
| 156 | (comint-send-string proc string) | 156 | (comint-send-string proc string) |
| 157 | (if comint-input-sender-no-newline | 157 | (if comint-input-sender-no-newline |
| 158 | (if (not (string-equal input "")) | 158 | (if (not (string-equal string "")) |
| 159 | (process-send-eof)) | 159 | (process-send-eof)) |
| 160 | (comint-send-string proc telnet-new-line))) | 160 | (comint-send-string proc telnet-new-line))) |
| 161 | 161 | ||