Mercurial > emacs
annotate lisp/telnet.el @ 21433:25b02305130b
(Man-getpage-in-background): Bind inhibit-eol-conversion
to t before calling start-process or call-process.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 08 Apr 1998 18:53:13 +0000 |
parents | 05d34da4c50c |
children | 2b9b91ac328a |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; telnet.el --- run a telnet session from within an Emacs buffer |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
2 |
14169 | 3 ;; Copyright (C) 1985, 1988, 1992, 1994 Free Software Foundation, Inc. |
841 | 4 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
5 ;; Author: William F. Schelter |
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
6 ;; Maintainer: FSF |
48 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
707 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
48 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
48 | 24 |
2562 | 25 ;;; Commentary: |
26 | |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
27 ;; This mode is intended to be used for telnet or rsh to a remote host; |
2562 | 28 ;; `telnet' and `rsh' are the two entry points. Multiple telnet or rsh |
29 ;; sessions are supported. | |
30 ;; | |
31 ;; Normally, input is sent to the remote telnet/rsh line-by-line, as you | |
32 ;; type RET or LFD. C-c C-c sends a C-c to the remote immediately; | |
33 ;; C-c C-z sends C-z immediately. C-c C-q followed by any character | |
34 ;; sends that character immediately. | |
35 ;; | |
36 ;; All RET characters are filtered out of the output coming back from the | |
37 ;; remote system. The mode tries to do other useful translations based | |
38 ;; on what it sees coming back from the other system before the password | |
39 ;; query. It knows about UNIX, ITS, TOPS-20 and Explorer systems. | |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
40 ;; |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
41 ;; You can use the global telnet-host-properties to associate a telnet |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
42 ;; program and login name with each host you regularly telnet to. |
2562 | 43 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
44 ;;; Code: |
48 | 45 |
2562 | 46 ;; to do fix software types for lispm: |
47 ;; to eval current expression. Also to try to send escape keys correctly. | |
48 ;; essentially we'll want the rubout-handler off. | |
48 | 49 |
50 ;; filter is simplistic but should be okay for typical shell usage. | |
51 ;; needs hacking if it is going to deal with asynchronous output in a sane | |
52 ;; manner | |
53 | |
54 (require 'comint) | |
707 | 55 |
19249
5514182f76c0
(telnet-host-properties): Initialize it properly.
Richard M. Stallman <rms@gnu.org>
parents:
18998
diff
changeset
|
56 (defvar telnet-host-properties () |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
57 "Specify which telnet program to use for particular hosts. |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
58 Each element has the form (HOSTNAME PROGRAM [LOGIN-NAME]) |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
59 HOSTNAME says which machine the element applies to. |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
60 PROGRAM says which program to run, to talk to that machine. |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
61 LOGIN-NAME, which is optional, says what to log in as on that machine.") |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
62 |
48 | 63 (defvar telnet-new-line "\r") |
64 (defvar telnet-mode-map nil) | |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
65 (defvar telnet-prompt-pattern "^[^#$%>\n]*[#$%>] *") |
48 | 66 (defvar telnet-replace-c-g nil) |
67 (make-variable-buffer-local | |
68 (defvar telnet-remote-echoes t | |
69 "True if the telnet process will echo input.")) | |
70 (make-variable-buffer-local | |
71 (defvar telnet-interrupt-string "\C-c" "String sent by C-c.")) | |
72 | |
73 (defvar telnet-count 0 | |
5142
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
74 "Number of output strings from telnet process while looking for password.") |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
75 (make-variable-buffer-local 'telnet-count) |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
76 |
8756
1c9ee34d9094
(telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
77 (defvar telnet-program "telnet" |
1c9ee34d9094
(telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
78 "Program to run to open a telnet connection.") |
1c9ee34d9094
(telnet-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
79 |
48 | 80 (defvar telnet-initial-count -50 |
1577 | 81 "Initial value of `telnet-count'. Should be set to the negative of the |
48 | 82 number of terminal writes telnet will make setting up the host connection.") |
83 | |
84 (defvar telnet-maximum-count 4 | |
1577 | 85 "Maximum value `telnet-count' can have. |
48 | 86 After this many passes, we stop looking for initial setup data. |
87 Should be set to the number of terminal writes telnet will make | |
6402
33dec33f382d
(telnet-maximum-count): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6156
diff
changeset
|
88 rejecting one login and prompting again for a username and password.") |
48 | 89 |
90 (defun telnet-interrupt-subjob () | |
91 (interactive) | |
92 "Interrupt the program running through telnet on the remote host." | |
93 (send-string nil telnet-interrupt-string)) | |
94 | |
95 (defun telnet-c-z () | |
96 (interactive) | |
97 (send-string nil "\C-z")) | |
98 | |
99 (defun send-process-next-char () | |
100 (interactive) | |
101 (send-string nil | |
102 (char-to-string | |
103 (let ((inhibit-quit t)) | |
104 (prog1 (read-char) | |
105 (setq quit-flag nil)))))) | |
106 | |
107 ; initialization on first load. | |
108 (if telnet-mode-map | |
109 nil | |
8887
9a6dc53633aa
(telnet-mode-map): Inherit from comint-mode-map.
Richard M. Stallman <rms@gnu.org>
parents:
8876
diff
changeset
|
110 (setq telnet-mode-map (nconc (make-sparse-keymap) comint-mode-map)) |
48 | 111 (define-key telnet-mode-map "\C-m" 'telnet-send-input) |
112 ; (define-key telnet-mode-map "\C-j" 'telnet-send-input) | |
113 (define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char) | |
114 (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob) | |
115 (define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z)) | |
116 | |
117 ;;maybe should have a flag for when have found type | |
118 (defun telnet-check-software-type-initialize (string) | |
119 "Tries to put correct initializations in. Needs work." | |
120 (let ((case-fold-search t)) | |
121 (cond ((string-match "unix" string) | |
122 (setq telnet-prompt-pattern comint-prompt-regexp) | |
123 (setq telnet-new-line "\n")) | |
124 ((string-match "tops-20" string) ;;maybe add telnet-replace-c-g | |
125 (setq telnet-prompt-pattern "[@>]*")) | |
126 ((string-match "its" string) | |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
127 (setq telnet-prompt-pattern "^[^*>\n]*[*>] *")) |
48 | 128 ((string-match "explorer" string) ;;explorer telnet needs work |
129 (setq telnet-replace-c-g ?\n)))) | |
130 (setq comint-prompt-regexp telnet-prompt-pattern)) | |
131 | |
132 (defun telnet-initial-filter (proc string) | |
133 ;For reading up to and including password; also will get machine type. | |
19817
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
134 (save-current-buffer |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
135 (set-buffer (process-buffer proc)) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
136 (let ((case-fold-search t)) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
137 (cond ((string-match "No such host" string) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
138 (kill-buffer (process-buffer proc)) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
139 (error "No such host")) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
140 ((string-match "passw" string) |
16847
76159aa277eb
(telnet-initial-filter): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
141 (telnet-filter proc string) |
19817
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
142 (setq telnet-count 0) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
143 (send-string proc (concat (comint-read-noecho "Password: " t) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
144 telnet-new-line))) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
145 (t (telnet-check-software-type-initialize string) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
146 (telnet-filter proc string) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
147 (cond ((> telnet-count telnet-maximum-count) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
148 (set-process-filter proc 'telnet-filter)) |
2b1a8f775e09
(telnet-initial-filter): Temporarily go to proper buffer.
Richard M. Stallman <rms@gnu.org>
parents:
19249
diff
changeset
|
149 (t (setq telnet-count (1+ telnet-count))))))))) |
48 | 150 |
3562
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
151 ;; Identical to comint-simple-send, except that it sends telnet-new-line |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
152 ;; instead of "\n". |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
153 (defun telnet-simple-send (proc string) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
154 (comint-send-string proc string) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
155 (comint-send-string proc telnet-new-line)) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
156 |
48 | 157 (defun telnet-filter (proc string) |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
158 (save-excursion |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
159 (set-buffer (process-buffer proc)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
160 (let* ((last-insertion (marker-position (process-mark proc))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
161 (delta (- (point) last-insertion)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
162 (ie (and comint-last-input-end |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
163 (marker-position comint-last-input-end))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
164 (w (get-buffer-window (current-buffer))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
165 (ws (and w (window-start w)))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
166 (goto-char last-insertion) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
167 (insert-before-markers string) |
20457
05d34da4c50c
(telnet-filter): Position comint-last-output-start.
Karl Heuer <kwzh@gnu.org>
parents:
19817
diff
changeset
|
168 (set-marker comint-last-output-start last-insertion) |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
169 (set-marker (process-mark proc) (point)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
170 (if ws (set-window-start w ws t)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
171 (if ie (set-marker comint-last-input-end ie)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
172 (while (progn (skip-chars-backward "^\C-m" last-insertion) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
173 (> (point) last-insertion)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
174 (delete-region (1- (point)) (point))) |
48 | 175 (goto-char (process-mark proc)) |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
176 (and telnet-replace-c-g |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
177 (subst-char-in-region last-insertion (point) ?\C-g |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
178 telnet-replace-c-g t)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
179 ;; If point is after the insertion place, move it |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
180 ;; along with the text. |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
181 (if (> delta 0) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
182 (goto-char (+ (process-mark proc) delta)))))) |
48 | 183 |
184 (defun telnet-send-input () | |
185 (interactive) | |
707 | 186 ; (comint-send-input telnet-new-line telnet-remote-echoes) |
187 (comint-send-input) | |
188 (if telnet-remote-echoes | |
189 (delete-region comint-last-input-start | |
190 comint-last-input-end))) | |
48 | 191 |
10980
aa3f323f1dea
Fix typos in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
10979
diff
changeset
|
192 ;;;###autoload (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") |
10979
a3de1a78a79f
(rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10452
diff
changeset
|
193 |
258 | 194 ;;;###autoload |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
195 (defun telnet (host) |
48 | 196 "Open a network login connection to host named HOST (a string). |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
197 Communication with HOST is recorded in a buffer `*PROGRAM-HOST*' |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
198 where PROGRAM is the telnet program being used. This program |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
199 is controlled by the contents of the global variable `telnet-host-properties', |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
200 falling back on the value of the global variable `telnet-program'. |
48 | 201 Normally input is edited in Emacs and sent a line at a time." |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
202 (interactive "sOpen connection to host: ") |
6156
3aafcde7e7c4
(telnet): Use chars in comint-delimiter-argument-list.
Richard M. Stallman <rms@gnu.org>
parents:
5549
diff
changeset
|
203 (let* ((comint-delimiter-argument-list '(?\ ?\t)) |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
204 (properties (cdr (assoc host telnet-host-properties))) |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
205 (telnet-program (if properties (car properties) telnet-program)) |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
206 (name (concat telnet-program "-" (comint-arguments host 0 nil) )) |
10129
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
207 (buffer (get-buffer (concat "*" name "*"))) |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
208 (telnet-options (if (cdr properties) (cons "-l" (cdr properties)))) |
10129
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
209 process) |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
210 (if (and buffer (get-buffer-process buffer)) |
10979
a3de1a78a79f
(rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10452
diff
changeset
|
211 (pop-to-buffer (concat "*" name "*")) |
18998
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
212 (pop-to-buffer |
20ff67539cfb
(telnet): Handle multiple telnet programs better.
Richard M. Stallman <rms@gnu.org>
parents:
17648
diff
changeset
|
213 (apply 'make-comint name telnet-program nil telnet-options)) |
10129
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
214 (setq process (get-buffer-process (current-buffer))) |
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
215 (set-process-filter process 'telnet-initial-filter) |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
216 ;; Don't send the `open' cmd till telnet is ready for it. |
10129
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
217 (accept-process-output process) |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
218 (erase-buffer) |
10129
c2fa03370e73
(telnet): Don't make assumptions about process name.
Richard M. Stallman <rms@gnu.org>
parents:
8887
diff
changeset
|
219 (send-string process (concat "open " host "\n")) |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
220 (telnet-mode) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
221 (setq comint-input-sender 'telnet-simple-send) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
222 (setq telnet-count telnet-initial-count)))) |
48 | 223 |
17648
132278ebdbc9
(telnet-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
16847
diff
changeset
|
224 (put 'telnet-mode 'mode-class 'special) |
132278ebdbc9
(telnet-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
16847
diff
changeset
|
225 |
48 | 226 (defun telnet-mode () |
2562 | 227 "This mode is for using telnet (or rsh) from a buffer to another host. |
1577 | 228 It has most of the same commands as comint-mode. |
48 | 229 There is a variable ``telnet-interrupt-string'' which is the character |
230 sent to try to stop execution of a job on the remote host. | |
231 Data is sent to the remote host when RET is typed. | |
232 | |
233 \\{telnet-mode-map} | |
2562 | 234 " |
48 | 235 (interactive) |
236 (comint-mode) | |
237 (setq major-mode 'telnet-mode | |
238 mode-name "Telnet" | |
239 comint-prompt-regexp telnet-prompt-pattern) | |
240 (use-local-map telnet-mode-map) | |
241 (run-hooks 'telnet-mode-hook)) | |
242 | |
10987
1c47aad4c1c7
(rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents:
10980
diff
changeset
|
243 ;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)") |
10979
a3de1a78a79f
(rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10452
diff
changeset
|
244 |
2562 | 245 ;;;###autoload |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
246 (defun rsh (host) |
2562 | 247 "Open a network login connection to host named HOST (a string). |
10987
1c47aad4c1c7
(rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents:
10980
diff
changeset
|
248 Communication with HOST is recorded in a buffer `*rsh-HOST*'. |
2562 | 249 Normally input is edited in Emacs and sent a line at a time." |
250 (interactive "sOpen rsh connection to host: ") | |
251 (require 'shell) | |
10987
1c47aad4c1c7
(rsh): Name the buffer *rsh-HOST*.
Richard M. Stallman <rms@gnu.org>
parents:
10980
diff
changeset
|
252 (let ((name (concat "rsh-" host ))) |
10979
a3de1a78a79f
(rsh, telnet): Use pop-to-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
10452
diff
changeset
|
253 (pop-to-buffer (make-comint name remote-shell-program nil host)) |
2562 | 254 (set-process-filter (get-process name) 'telnet-initial-filter) |
255 (telnet-mode) | |
256 (setq telnet-count -16))) | |
257 | |
584 | 258 (provide 'telnet) |
259 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
260 ;;; telnet.el ends here |