aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1993-04-10 14:27:54 +0000
committerEric S. Raymond1993-04-10 14:27:54 +0000
commit735b3061680844815c4501e02b141e343bf43bd4 (patch)
treec067b13f4daf382347112f817708533898c97cdb
parent55bd4cbcb5232afb65d9ada8bc5c93e9008e0aa0 (diff)
downloademacs-735b3061680844815c4501e02b141e343bf43bd4.tar.gz
emacs-735b3061680844815c4501e02b141e343bf43bd4.zip
Clean up cmu* uses in header comments.
-rw-r--r--lisp/comint.el17
1 files changed, 6 insertions, 11 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index de887926f04..af9a8159bf7 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -37,13 +37,8 @@
37;;; saves code, implementation time, etc., etc.). 37;;; saves code, implementation time, etc., etc.).
38 38
39;;; Several packages are already defined using comint mode: 39;;; Several packages are already defined using comint mode:
40;;; - cmushell.el defines a shell-in-a-buffer mode. 40;;; - shell.el defines a shell-in-a-buffer mode.
41;;; - cmulisp.el defines a simple lisp-in-a-buffer mode. 41;;; - cmulisp.el defines a simple lisp-in-a-buffer mode.
42;;; Cmushell and cmulisp mode are similar to, and intended to replace,
43;;; their counterparts in the standard gnu emacs release (in shell.el).
44;;; These replacements are more featureful, robust, and uniform than the
45;;; released versions. The key bindings in lisp mode are also more compatible
46;;; with the bindings of Hemlock and Zwei (the Lisp Machine emacs).
47;;; 42;;;
48;;; - The file cmuscheme.el defines a scheme-in-a-buffer mode. 43;;; - The file cmuscheme.el defines a scheme-in-a-buffer mode.
49;;; - The file tea.el tunes scheme and inferior-scheme modes for T. 44;;; - The file tea.el tunes scheme and inferior-scheme modes for T.
@@ -65,7 +60,7 @@
65 60
66;;; Brief Command Documentation: 61;;; Brief Command Documentation:
67;;;============================================================================ 62;;;============================================================================
68;;; Comint Mode Commands: (common to all derived modes, like cmushell & cmulisp 63;;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp
69;;; mode) 64;;; mode)
70;;; 65;;;
71;;; m-p comint-previous-input Cycle backwards in input history 66;;; m-p comint-previous-input Cycle backwards in input history
@@ -1039,8 +1034,8 @@ Useful if you accidentally suspend the top-level process."
1039 1034
1040;;; These are not installed in the comint-mode keymap. But they are 1035;;; These are not installed in the comint-mode keymap. But they are
1041;;; available for people who want them. Shell-mode installs them: 1036;;; available for people who want them. Shell-mode installs them:
1042;;; (define-key cmushell-mode-map "\t" 'comint-dynamic-complete) 1037;;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
1043;;; (define-key cmushell-mode-map "\M-?" 'comint-dynamic-list-completions))) 1038;;; (define-key shell-mode-map "\M-?" 'comint-dynamic-list-completions)))
1044;;; 1039;;;
1045;;; Commands like this are fine things to put in load hooks if you 1040;;; Commands like this are fine things to put in load hooks if you
1046;;; want them present in specific modes. 1041;;; want them present in specific modes.
@@ -1176,7 +1171,7 @@ it just adds completion characters to the end of the filename."
1176;;; (comint-prompt-regexp, comint-input-filter, comint-input-sentinel, 1171;;; (comint-prompt-regexp, comint-input-filter, comint-input-sentinel,
1177;;; comint-get-old-input) that need to be different from the defaults. Call 1172;;; comint-get-old-input) that need to be different from the defaults. Call
1178;;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself; 1173;;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself;
1179;;; comint-mode will take care of it. The following example, from cmushell.el, 1174;;; comint-mode will take care of it. The following example, from shell.el,
1180;;; is typical: 1175;;; is typical:
1181;;; 1176;;;
1182;;; (defun shell-mode () 1177;;; (defun shell-mode ()
@@ -1320,7 +1315,7 @@ This is a good place to put keybindings.")
1320;;; - Prompt-search history commands have been commented out. I never 1315;;; - Prompt-search history commands have been commented out. I never
1321;;; liked them; I don't think anyone used them. 1316;;; liked them; I don't think anyone used them.
1322;;; - Made comint-exec-hook a local var, as it should have been. 1317;;; - Made comint-exec-hook a local var, as it should have been.
1323;;; (This way, for instance, you can have cmushell procs kill-w/o-query, 1318;;; (This way, for instance, you can have shell procs kill-w/o-query,
1324;;; but let Scheme procs be default.) 1319;;; but let Scheme procs be default.)
1325;;; 1320;;;
1326;;; 7/91 Shivers 1321;;; 7/91 Shivers