aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/flow-ctrl.el
diff options
context:
space:
mode:
authorEric S. Raymond1992-07-16 07:28:05 +0000
committerEric S. Raymond1992-07-16 07:28:05 +0000
commitfc68affa4e920d6a58520949ab446c77f90c534a (patch)
tree5ef52e43dc8979fdc2d524c27ecd05ec696a406c /lisp/flow-ctrl.el
parent282d89c00d827cc25d77849ac23e919cbeabd045 (diff)
downloademacs-fc68affa4e920d6a58520949ab446c77f90c534a.tar.gz
emacs-fc68affa4e920d6a58520949ab446c77f90c534a.zip
*** empty log message ***
Diffstat (limited to 'lisp/flow-ctrl.el')
-rw-r--r--lisp/flow-ctrl.el13
1 files changed, 10 insertions, 3 deletions
diff --git a/lisp/flow-ctrl.el b/lisp/flow-ctrl.el
index 853fac2f6ef..637db1dca80 100644
--- a/lisp/flow-ctrl.el
+++ b/lisp/flow-ctrl.el
@@ -1,8 +1,12 @@
1;;; flow-ctrl.el --- help for lusers on cu(1) or terminals with wired-in ^S/^Q flow control 1;;; flow-ctrl.el --- help for lusers on cu(1) or ttys with wired-in ^S/^Q flow control
2
3;; Author Kevin Gallagher
4;; Maintainer: FSF
5;; Last-Modified: 03 Jun 1992
6;; Adapted-By: ESR
2 7
3;;; Copyright (C) 1990 Free Software Foundation, Inc. 8;;; Copyright (C) 1990 Free Software Foundation, Inc.
4;;; Copyright (C) 1991 Kevin Gallagher 9;;; Copyright (C) 1991 Kevin Gallagher
5;;; Adapted for Emacs 19 by Eric S. Raymond <eric@snark.thyrsus.com>
6;;; 10;;;
7;;; GNU Emacs is distributed in the hope that it will be useful, but 11;;; GNU Emacs is distributed in the hope that it will be useful, but
8;;; WITHOUT ANY WARRANTY. No author or distributor accepts 12;;; WITHOUT ANY WARRANTY. No author or distributor accepts
@@ -18,7 +22,8 @@
18;;; your rights and responsibilities. It should be in a file named 22;;; your rights and responsibilities. It should be in a file named
19;;; COPYING. Among other things, the Copyright notice and this notice 23;;; COPYING. Among other things, the Copyright notice and this notice
20;;; must be preserved on all copies. 24;;; must be preserved on all copies.
21;;; 25
26;;; Commentary:
22 27
23;;;; Terminals that use XON/XOFF flow control can cause problems with 28;;;; Terminals that use XON/XOFF flow control can cause problems with
24;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it 29;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it
@@ -36,6 +41,8 @@
36;;; Portability note: This uses (getenv "TERM"), and therefore probably 41;;; Portability note: This uses (getenv "TERM"), and therefore probably
37;;; won't work outside of UNIX-like environments. 42;;; won't work outside of UNIX-like environments.
38 43
44;;; Code:
45
39(defun evade-flow-control () 46(defun evade-flow-control ()
40 "Enable use of flow control; let user type C-s as C-\ and C-q as C-^." 47 "Enable use of flow control; let user type C-s as C-\ and C-q as C-^."
41 (interactive) 48 (interactive)