Mercurial > emacs
annotate lisp/flow-ctrl.el @ 4695:32220a85d53b
Remove check for $srcdir being configured. This pretty much works now.
Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
Check for XFree86 (/usr/X386/include) independent of whether -lXbsd exists.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Fri, 10 Sep 1993 06:08:27 +0000 |
parents | 41a282d1b176 |
children | 9b694015caec |
rev | line source |
---|---|
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
1 ;;; flow-ctrl.el --- help for lusers on cu(1) or ttys with wired-in ^S/^Q flow control |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
2 |
1848 | 3 ;;; Copyright (C) 1990, 1991 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
844
diff
changeset
|
4 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
5 ;; Author Kevin Gallagher |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
6 ;; Maintainer: FSF |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
7 ;; Adapted-By: ESR |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
8 ;; Keywords: hardware |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
9 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
844
diff
changeset
|
10 ;;; This file is part of GNU Emacs. |
541 | 11 ;;; |
12 ;;; GNU Emacs is distributed in the hope that it will be useful, but | |
13 ;;; WITHOUT ANY WARRANTY. No author or distributor accepts | |
14 ;;; RESPONSIBILITY TO anyone for the consequences of using it or for | |
15 ;;; whether it serves any particular purpose or works at all, unless | |
16 ;;; he says so in writing. Refer to the GNU Emacs General Public | |
17 ;;; License for full details. | |
18 ;;; | |
19 ;;; Everyone is granted permission to copy, modify and redistribute | |
20 ;;; GNU Emacs, but only under the conditions described in the GNU | |
21 ;;; Emacs General Public License. A copy of this license is supposed | |
22 ;;; to have been given to you along with GNU Emacs so you can know | |
23 ;;; your rights and responsibilities. It should be in a file named | |
24 ;;; COPYING. Among other things, the Copyright notice and this notice | |
25 ;;; must be preserved on all copies. | |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
26 |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
27 ;;; Commentary: |
541 | 28 |
29 ;;;; Terminals that use XON/XOFF flow control can cause problems with | |
792
45d748a65f24
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
677
diff
changeset
|
30 ;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it |
541 | 31 ;;;; easy for a user to deal with this problem, when using such a |
32 ;;;; terminal. | |
33 ;;;; | |
34 ;;;; To invoke these adjustments, a user need only invoke the function | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
35 ;;;; enable-flow-control-on with a list of terminal types in his/her own |
541 | 36 ;;;; .emacs file. As arguments, give it the names of one or more terminal |
37 ;;;; types in use by that user which require flow control adjustments. | |
38 ;;;; Here's an example: | |
39 ;;;; | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
40 ;;;; (enable-flow-control-on "vt200" "vt300" "vt101" "vt131") |
541 | 41 |
42 ;;; Portability note: This uses (getenv "TERM"), and therefore probably | |
43 ;;; won't work outside of UNIX-like environments. | |
44 | |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
45 ;;; Code: |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
792
diff
changeset
|
46 |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
47 ;;;###autoload |
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
48 (defun enable-flow-control () |
3469
ba185131c3e8
(enable-flow-control): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1855
diff
changeset
|
49 "Enable use of flow control; let user type C-s as C-\\ and C-q as C-^." |
541 | 50 (interactive) |
51 ;; Tell emacs to pass C-s and C-q to OS. | |
3660
41a282d1b176
(enable-flow-control): Don't alter the 8-bit flag.
Richard M. Stallman <rms@gnu.org>
parents:
3469
diff
changeset
|
52 (set-input-mode nil t (nth 2 (current-input-mode))) |
541 | 53 ;; Initialize translate table, saving previous mappings, if any. |
54 (let ((the-table (make-string 128 0))) | |
55 (let ((i 0) | |
56 (j (length keyboard-translate-table))) | |
57 (while (< i j) | |
58 (aset the-table i (elt keyboard-translate-table i)) | |
59 (setq i (1+ i))) | |
60 (while (< i 128) | |
61 (aset the-table i i) | |
62 (setq i (1+ i)))) | |
63 (setq keyboard-translate-table the-table)) | |
64 ;; Swap C-s and C-\ | |
65 (aset keyboard-translate-table ?\034 ?\^s) | |
66 (aset keyboard-translate-table ?\^s ?\034) | |
67 ;; Swap C-q and C-^ | |
68 (aset keyboard-translate-table ?\036 ?\^q) | |
69 (aset keyboard-translate-table ?\^q ?\036) | |
70 (message (concat | |
71 "XON/XOFF adjustment for " | |
72 (getenv "TERM") | |
73 ": use C-\\ for C-s and use C-^ for C-q.")) | |
74 (sleep-for 2)) ; Give user a chance to see message. | |
75 | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
76 (defun enable-flow-control-memstr= (e s) |
541 | 77 (cond ((null s) nil) |
78 ((string= e (car s)) t) | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
79 (t (enable-flow-control-memstr= e (cdr s))))) |
541 | 80 |
81 ;;;###autoload | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
82 (defun enable-flow-control-on (&rest losing-terminal-types) |
669
4c64c671426f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
83 "Enable flow control if using one of a specified set of terminal types. |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
84 Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control |
669
4c64c671426f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
85 on VT-100 and H19 terminals. When flow control is enabled, |
677
7a9b4ea68565
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
669
diff
changeset
|
86 you must type C-\\ to get the effect of a C-s, and type C-^ |
669
4c64c671426f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
87 to get the effect of a C-q." |
541 | 88 (let ((term (getenv "TERM")) |
89 hyphend) | |
90 ;; Strip off hyphen and what follows | |
91 (while (setq hyphend (string-match "[-_][^-_]+$" term)) | |
92 (setq term (substring term 0 hyphend))) | |
1855
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
93 (and (enable-flow-control-memstr= term losing-terminal-types) |
80c1064620a8
(enable-flow-control...): Renamed from evade...
Richard M. Stallman <rms@gnu.org>
parents:
1848
diff
changeset
|
94 (enable-flow-control)))) |
541 | 95 |
96 (provide 'flow-ctrl) | |
97 | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
98 ;;; flow-ctrl.el ends here |