summaryrefslogtreecommitdiff
path: root/lisp/net/telnet.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-04 13:24:35 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-04 13:24:35 +0000
commita1506d2977a8c2eb982ad0b59416009cdfaa6f51 (patch)
tree3cbb868ad6eb3b188d5064389538c490c124d8be /lisp/net/telnet.el
parentf1180544bb5ff44cdb45b8734734294b0a2fa7a4 (diff)
downloademacs-a1506d2977a8c2eb982ad0b59416009cdfaa6f51.tar.gz
emacs-a1506d2977a8c2eb982ad0b59416009cdfaa6f51.tar.bz2
emacs-a1506d2977a8c2eb982ad0b59416009cdfaa6f51.zip
Trailing whitepace deleted.
Diffstat (limited to 'lisp/net/telnet.el')
-rw-r--r--lisp/net/telnet.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/net/telnet.el b/lisp/net/telnet.el
index abfd5b582ac..b75ff47220d 100644
--- a/lisp/net/telnet.el
+++ b/lisp/net/telnet.el
@@ -30,7 +30,7 @@
;; sessions are supported.
;;
;; Normally, input is sent to the remote telnet/rsh line-by-line, as you
-;; type RET or LFD. C-c C-c sends a C-c to the remote immediately;
+;; type RET or LFD. C-c C-c sends a C-c to the remote immediately;
;; C-c C-z sends C-z immediately. C-c C-q followed by any character
;; sends that character immediately.
;;
@@ -112,7 +112,7 @@ rejecting one login and prompting again for a username and password.")
(define-key telnet-mode-map "\C-m" 'telnet-send-input)
; (define-key telnet-mode-map "\C-j" 'telnet-send-input)
(define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char)
- (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob)
+ (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob)
(define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z))
;;maybe should have a flag for when have found type
@@ -214,7 +214,7 @@ Normally input is edited in Emacs and sent a line at a time."
process)
(if (and buffer (get-buffer-process buffer))
(pop-to-buffer (concat "*" name "*"))
- (pop-to-buffer
+ (pop-to-buffer
(apply 'make-comint name telnet-program nil telnet-options))
(setq process (get-buffer-process (current-buffer)))
(set-process-filter process 'telnet-initial-filter)