diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-07-16 07:28:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1992-07-16 07:28:05 +0000 |
commit | fc68affa4e920d6a58520949ab446c77f90c534a (patch) | |
tree | 5ef52e43dc8979fdc2d524c27ecd05ec696a406c /lisp/flow-ctrl.el | |
parent | 282d89c00d827cc25d77849ac23e919cbeabd045 (diff) | |
download | emacs-fc68affa4e920d6a58520949ab446c77f90c534a.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/flow-ctrl.el')
-rw-r--r-- | lisp/flow-ctrl.el | 13 |
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 @@ -;;; flow-ctrl.el --- help for lusers on cu(1) or terminals with wired-in ^S/^Q flow control +;;; flow-ctrl.el --- help for lusers on cu(1) or ttys with wired-in ^S/^Q flow control + +;; Author Kevin Gallagher +;; Maintainer: FSF +;; Last-Modified: 03 Jun 1992 +;; Adapted-By: ESR ;;; Copyright (C) 1990 Free Software Foundation, Inc. ;;; Copyright (C) 1991 Kevin Gallagher -;;; Adapted for Emacs 19 by Eric S. Raymond <eric@snark.thyrsus.com> ;;; ;;; GNU Emacs is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY. No author or distributor accepts @@ -18,7 +22,8 @@ ;;; your rights and responsibilities. It should be in a file named ;;; COPYING. Among other things, the Copyright notice and this notice ;;; must be preserved on all copies. -;;; + +;;; Commentary: ;;;; Terminals that use XON/XOFF flow control can cause problems with ;;;; GNU Emacs users. This file contains Emacs Lisp code that makes it @@ -36,6 +41,8 @@ ;;; Portability note: This uses (getenv "TERM"), and therefore probably ;;; won't work outside of UNIX-like environments. +;;; Code: + (defun evade-flow-control () "Enable use of flow control; let user type C-s as C-\ and C-q as C-^." (interactive) |