aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1992-07-14 02:41:33 +0000
committerEric S. Raymond1992-07-14 02:41:33 +0000
commitbe14d3120a2502e5f06ef905f3b3e40a62c08d15 (patch)
treee17336ea4006ece6bbab4314d5110309ef4a168b
parent70e1dad880ddabb7e32447526d555fd05d4aed14 (diff)
downloademacs-be14d3120a2502e5f06ef905f3b3e40a62c08d15.tar.gz
emacs-be14d3120a2502e5f06ef905f3b3e40a62c08d15.zip
*** empty log message ***
-rw-r--r--lisp/comint.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 5ba3fc6163f..2e6953c3240 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -24,7 +24,6 @@
24;;; merge them into the master source. 24;;; merge them into the master source.
25;;; - Olin Shivers (shivers@cs.cmu.edu) 25;;; - Olin Shivers (shivers@cs.cmu.edu)
26 26
27;;; This hopefully generalises shell mode, lisp mode, tea mode, soar mode,...
28;;; This file defines a general command-interpreter-in-a-buffer package 27;;; This file defines a general command-interpreter-in-a-buffer package
29;;; (comint mode). The idea is that you can build specific process-in-a-buffer 28;;; (comint mode). The idea is that you can build specific process-in-a-buffer
30;;; modes on top of comint mode -- e.g., lisp, shell, scheme, T, soar, .... 29;;; modes on top of comint mode -- e.g., lisp, shell, scheme, T, soar, ....
@@ -1183,13 +1182,10 @@ it just adds completion characters to the end of the filename."
1183 1182
1184;;; Converting process modes to use comint mode 1183;;; Converting process modes to use comint mode
1185;;; =========================================================================== 1184;;; ===========================================================================
1186;;; Several gnu packages (tex-mode, background, dbx, gdb, kermit, prolog, 1185;;; The code in the Emacs 19 distribution has all been modified to use comint
1187;;; telnet are some) use the shell package as clients. Most of them would 1186;;; where needed. However, there are `third-party' packages out there that
1188;;; be better off using the comint package, but they predate it. 1187;;; still use the old shell mode. Here's a guide to conversion.
1189;;; 1188;;;
1190;;; Altering these packages to use comint mode should greatly
1191;;; improve their functionality, and is fairly easy.
1192;;;
1193;;; Renaming variables 1189;;; Renaming variables
1194;;; Most of the work is renaming variables and functions. These are the common 1190;;; Most of the work is renaming variables and functions. These are the common
1195;;; ones: 1191;;; ones: