emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/net/telnet.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/net/telnet.el
Date: Sat, 12 Jan 2002 23:45:12 -0500

Index: emacs/lisp/net/telnet.el
diff -c emacs/lisp/net/telnet.el:1.2 emacs/lisp/net/telnet.el:1.3
*** emacs/lisp/net/telnet.el:1.2        Sun Aug 26 12:34:04 2001
--- emacs/lisp/net/telnet.el    Sat Jan 12 23:45:12 2002
***************
*** 154,160 ****
  ;; instead of "\n".
  (defun telnet-simple-send (proc string)
    (comint-send-string proc string)
!   (comint-send-string proc telnet-new-line))
  
  (defun telnet-filter (proc string)
    (save-excursion
--- 154,163 ----
  ;; instead of "\n".
  (defun telnet-simple-send (proc string)
    (comint-send-string proc string)
!   (if comint-input-sender-no-newline
!       (if (not (string-equal input ""))
!         (process-send-eof))
!     (comint-send-string proc telnet-new-line)))
  
  (defun telnet-filter (proc string)
    (save-excursion



reply via email to

[Prev in Thread] Current Thread [Next in Thread]