Mercurial > emacs
annotate lisp/rlogin.el @ 3455:7542bfc0a920
(byte-compile-insert-header): Fix backwards test
of byte-compile-compatibility.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 03 Jun 1993 18:35:28 +0000 |
parents | 843c652ebcc3 |
children | cd842296bebf |
rev | line source |
---|---|
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
1 ;;; rlogin.el --- remote login interface |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
2 |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
3 ;; Author: Noah Friedman |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
4 ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> |
2259 | 5 ;; Keywords: unix, comm |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
6 |
2387
cb44857cab89
moby rlogin-filter fixes
Noah Friedman <friedman@splode.com>
parents:
2315
diff
changeset
|
7 ;; Copyright (C) 1992, 1993 Free Software Foundation, Inc. |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
8 ;; |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
9 ;; This program is free software; you can redistribute it and/or modify |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
10 ;; it under the terms of the GNU General Public License as published by |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
12 ;; any later version. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
13 ;; |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
14 ;; This program is distributed in the hope that it will be useful, |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
17 ;; GNU General Public License for more details. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
18 ;; |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
19 ;; You should have received a copy of the GNU General Public License |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
20 ;; along with this program; if not, write to: The Free Software Foundation, |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
21 ;; Inc.; 675 Massachusetts Avenue.; Cambridge, MA 02139, USA. |
2231 | 22 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
23 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
24 |
2387
cb44857cab89
moby rlogin-filter fixes
Noah Friedman <friedman@splode.com>
parents:
2315
diff
changeset
|
25 ;; Support for remote logins using `rlogin'. |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
26 ;; |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2259
diff
changeset
|
27 ;; Todo: add directory tracking using ange-ftp style patchnames for the cwd. |
2231 | 28 |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
29 ;;; Code: |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
30 |
2231 | 31 (require 'comint) |
32 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
33 ;;;###autoload |
2231 | 34 (defvar rlogin-program "rlogin" |
35 "*Name of program to invoke rlogin") | |
36 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
37 ;;;###autoload |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
38 (defvar rlogin-explicit-args nil |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
39 "*List of arguments to pass to rlogin on the command line.") |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
40 |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
41 ;;;###autoload |
2231 | 42 (defvar rlogin-mode-hook nil |
43 "*Hooks to run after setting current buffer to rlogin-mode.") | |
44 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
45 ;;;###autoload |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
46 (defvar rlogin-process-connection-type nil |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
47 "*If non-`nil', use a pty for the local rlogin process. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
48 If `nil', use a pipe (if pipes are supported on the local system). |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
49 |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
50 Generally it is better not to waste ptys on systems which have a static |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
51 number of them. On the other hand, some implementations of `rlogin' assume |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
52 a pty is being used, and errors will result from using a pipe instead.") |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
53 |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
54 ;; Leave this nil because it makes rlogin-filter a tiny bit faster. Plus |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
55 ;; you can still call rlogin-password by hand. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
56 ;;;###autoload |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
57 (defvar rlogin-password-paranoia nil |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
58 "*If non-`nil', query user for a password in the minibuffer when a Password: prompt appears. |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
59 It's also possible to selectively enter passwords without echoing them in |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
60 the minibuffer using the command `rlogin-password' explicitly.") |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
61 |
2231 | 62 ;; Initialize rlogin mode map. |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
63 ;;;###autoload |
2231 | 64 (defvar rlogin-mode-map '()) |
65 (cond ((not rlogin-mode-map) | |
66 (setq rlogin-mode-map (full-copy-sparse-keymap comint-mode-map)) | |
67 ;(define-key rlogin-mode-map "\M-\t" 'comint-dynamic-complete) | |
68 ;(define-key rlogin-mode-map "\M-?" 'comint-dynamic-list-completions) | |
69 (define-key rlogin-mode-map "\C-c\C-c" 'rlogin-send-Ctrl-C) | |
70 (define-key rlogin-mode-map "\C-c\C-z" 'rlogin-send-Ctrl-Z) | |
71 (define-key rlogin-mode-map "\C-c\C-\\" 'rlogin-send-Ctrl-backslash) | |
72 (define-key rlogin-mode-map "\C-d" 'rlogin-delchar-or-send-Ctrl-D))) | |
73 | |
2387
cb44857cab89
moby rlogin-filter fixes
Noah Friedman <friedman@splode.com>
parents:
2315
diff
changeset
|
74 ;;;###autoload |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
75 (defun rlogin (&optional prefix host) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
76 "Open a network login connection to HOST via the `rlogin' program. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
77 Input is sent line-at-a-time to the remote connection. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
78 |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
79 Communication with HOST is recorded in a buffer *rlogin-HOST*. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
80 If a prefix argument is given and the buffer *rlogin-HOST* already exists, |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
81 a new buffer with a different connection will be made. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
82 |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
83 The variable `rlogin-program' contains the name of the actual program to |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
84 run. It can be a relative or absolute path. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
85 |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
86 The variable `rlogin-explicit-args' is a list of arguments to give to |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
87 the rlogin when starting." |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
88 (interactive (list current-prefix-arg |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
89 (read-from-minibuffer "Open rlogin connection to host: "))) |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
90 (let* ((process-connection-type rlogin-process-connection-type) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
91 (buffer-name (format "*rlogin-%s*" host)) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
92 (args (if (and rlogin-explicit-args (listp rlogin-explicit-args)) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
93 (cons host rlogin-explicit-args) |
2405
f51bd6676409
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2404
diff
changeset
|
94 (list host))) |
f51bd6676409
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2404
diff
changeset
|
95 proc) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
96 (and prefix (setq buffer-name |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
97 (buffer-name (generate-new-buffer buffer-name)))) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
98 (switch-to-buffer buffer-name) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
99 (or (comint-check-proc buffer-name) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
100 (progn |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
101 (comint-mode) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
102 (comint-exec (current-buffer) buffer-name rlogin-program nil args) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
103 (setq proc (get-process buffer-name)) |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
104 ;; Set process-mark to point-max in case there is text in the |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
105 ;; buffer from a previous exited process. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
106 (set-marker (process-mark proc) (point-max)) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
107 (set-process-filter proc 'rlogin-filter) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
108 (rlogin-mode))))) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
109 |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
110 ;;;###autoload |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
111 (defun rlogin-with-args (host args) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
112 "Open a new rlogin connection to HOST, even if one already exists. |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
113 String ARGS is given as arguments to the `rlogin' program, overriding the |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
114 value of `rlogin-explicit-args'." |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
115 (interactive (list (read-from-minibuffer "Open rlogin connection to host: ") |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
116 (read-from-minibuffer "with arguments: "))) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
117 (let ((old-match-data (match-data)) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
118 (rlogin-explicit-args nil)) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
119 (unwind-protect |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
120 (progn |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
121 (while (string-match "[ \t]*\\([^ \t]+\\)$" args) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
122 (setq rlogin-explicit-args |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
123 (cons (substring args |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
124 (match-beginning 1) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
125 (match-end 1)) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
126 rlogin-explicit-args) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
127 args (substring args 0 (match-beginning 0))))) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
128 (store-match-data old-match-data)) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
129 (rlogin 1 host))) |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
130 |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
131 ;;;###autoload |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
132 (defun rlogin-password (&optional proc) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
133 "Read a password and send it to an rlogin session. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
134 For each character typed, a `*' is echoed in the minibuffer. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
135 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
136 C-g aborts attempt to read and send password. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
137 |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
138 Optional argument PROC is the process to which the password should be sent. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
139 If not provided, send to the process in the current buffer. This argument |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
140 is intended primarily for use by `rlogin-filter'." |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
141 (interactive) |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
142 (or proc (setq proc (get-buffer-process (current-buffer)))) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
143 (let* ((buffer-name (buffer-name (process-buffer proc))) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
144 (pass (comint-read-noecho (format "Password for buffer \"%s\": " |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
145 buffer-name) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
146 'stars))) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
147 (and pass |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
148 (save-excursion |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
149 (set-buffer buffer-name) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
150 (insert-before-markers "\n") |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
151 (comint-send-string proc (format "%s\n" pass)))))) |
2231 | 152 |
2387
cb44857cab89
moby rlogin-filter fixes
Noah Friedman <friedman@splode.com>
parents:
2315
diff
changeset
|
153 ;;;###autoload |
2231 | 154 (defun rlogin-mode () |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
155 "Set major-mode for rlogin sessions. |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
156 If `rlogin-mode-hook' is set, run it." |
2231 | 157 (interactive) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
158 (kill-all-local-variables) |
2231 | 159 (comint-mode) |
160 (setq comint-prompt-regexp shell-prompt-pattern) | |
161 (setq major-mode 'rlogin-mode) | |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
162 (setq mode-name "rlogin") |
2231 | 163 (use-local-map rlogin-mode-map) |
164 (run-hooks 'rlogin-mode-hook)) | |
165 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
166 |
2231 | 167 (defun rlogin-filter (proc string) |
2948
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
168 (let (proc-mark region-begin window) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
169 (save-excursion |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
170 (set-buffer (process-buffer proc)) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
171 (setq proc-mark (process-mark proc) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
172 region-begin (point) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
173 ;; If process mark is at window start, insert-before-markers |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
174 ;; will insert text off-window since it's also inserting before |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
175 ;; the start window mark. Make sure we can see the most recent |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
176 ;; text. (note: it's a buglet that this isn't necessary if |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
177 ;; scroll-step is 0, but that works to our advantage since it |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
178 ;; makes the filter a little faster.) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
179 window (and (/= 0 scroll-step) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
180 (= proc-mark (window-start)) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
181 (get-buffer-window (current-buffer)))) |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
182 (goto-char proc-mark) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
183 (insert-before-markers string) |
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
184 (goto-char region-begin) |
2948
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
185 ;; I think something fishy is going on with save-excursion and |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
186 ;; search-forward. If you don't make search-forward move to the end |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
187 ;; of the search region when it's done, then if the user switches |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
188 ;; buffers back and forth, it leaves point sitting behind the |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
189 ;; process-mark, so that text inserted later goes off-screen. |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
190 (while (search-forward "\C-m" proc-mark 'goto-end) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
191 (delete-char -1))) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
192 ;; Frob window-start outside of save-excursion so it works whether the |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
193 ;; current buffer is the process buffer or not. |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
194 (and window |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
195 (>= (window-start window) region-begin) |
843c652ebcc3
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2539
diff
changeset
|
196 (set-window-start window region-begin 'noforce))) |
2404
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
197 (and rlogin-password-paranoia |
845db675b3e9
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2387
diff
changeset
|
198 (string= "Password:" string) |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
199 (rlogin-password proc))) |
2231 | 200 |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
201 ;;;###autoload |
2231 | 202 (defun rlogin-send-Ctrl-C () |
203 (interactive) | |
204 (send-string nil "\C-c")) | |
205 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
206 ;;;###autoload |
2231 | 207 (defun rlogin-send-Ctrl-Z () |
208 (interactive) | |
209 (send-string nil "\C-z")) | |
210 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
211 ;;;###autoload |
2231 | 212 (defun rlogin-send-Ctrl-backslash () |
213 (interactive) | |
214 (send-string nil "\C-\\")) | |
215 | |
2539
577c77cfd199
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
2405
diff
changeset
|
216 ;;;###autoload |
2231 | 217 (defun rlogin-delchar-or-send-Ctrl-D (arg) |
218 "Delete ARG characters forward, or send a C-d to process if at end of | |
219 buffer." | |
220 (interactive "p") | |
221 (if (eobp) | |
222 (send-string nil "\C-d") | |
223 (delete-char arg))) | |
224 | |
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2231
diff
changeset
|
225 ;;; rlogin.el ends here |