aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1995-01-10 12:08:21 +0000
committerSimon Marshall1995-01-10 12:08:21 +0000
commite9933cb15cd73cd902285744af4a7806178fec31 (patch)
tree32dcdc4ca606d1559b80a62233bea545ae174ae6
parentaab1fdaecc9bca65ebd9a086107aabb951712444 (diff)
downloademacs-e9933cb15cd73cd902285744af4a7806178fec31.tar.gz
emacs-e9933cb15cd73cd902285744af4a7806178fec31.zip
Doc fixes (simon's email address and shell-mode)
-rw-r--r--lisp/shell.el17
1 files changed, 10 insertions, 7 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index c561bab42e9..3e68ded62eb 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 1988, 1993, 1994 Free Software Foundation, Inc. 3;; Copyright (C) 1988, 1993, 1994 Free Software Foundation, Inc.
4 4
5;; Author: Olin Shivers <shivers@cs.cmu.edu> 5;; Author: Olin Shivers <shivers@cs.cmu.edu>
6;; Maintainer: Simon Marshall <s.marshall@dcs.hull.ac.uk> 6;; Maintainer: Simon Marshall <simon@gnu.ai.mit.edu>
7;; Keywords: processes 7;; Keywords: processes
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
@@ -27,7 +27,7 @@
27;;; Please send me bug reports, bug fixes, and extensions, so that I can 27;;; Please send me bug reports, bug fixes, and extensions, so that I can
28;;; merge them into the master source. 28;;; merge them into the master source.
29;;; - Olin Shivers (shivers@cs.cmu.edu) 29;;; - Olin Shivers (shivers@cs.cmu.edu)
30;;; - Simon Marshall (s.marshall@dcs.hull.ac.uk) 30;;; - Simon Marshall (simon@gnu.ai.mit.edu)
31 31
32;;; This file defines a a shell-in-a-buffer package (shell mode) built 32;;; This file defines a a shell-in-a-buffer package (shell mode) built
33;;; on top of comint mode. This is actually cmushell with things 33;;; on top of comint mode. This is actually cmushell with things
@@ -257,18 +257,21 @@ Return after the end of the process' output sends the text from the
257 end of process to the end of the current line. 257 end of process to the end of the current line.
258Return before end of process output copies the current line (except 258Return before end of process output copies the current line (except
259 for the prompt) to the end of the buffer and sends it. 259 for the prompt) to the end of the buffer and sends it.
260M-x send-invisible reads a line of text without echoing it, and sends it to 260\\[send-invisible] reads a line of text without echoing it, and sends it to
261 the shell. This is useful for entering passwords. Or, add the function 261 the shell. This is useful for entering passwords. Or, add the function
262 `comint-watch-for-password-prompt' to `comint-output-filter-functions'. 262 `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
263 263
264If you want to make multiple shell buffers, rename the `*shell*' buffer
265using \\[rename-buffer] or \\[rename-uniquely] and start a new shell.
266
264If you accidentally suspend your process, use \\[comint-continue-subjob] 267If you accidentally suspend your process, use \\[comint-continue-subjob]
265to continue it. 268to continue it.
266 269
267cd, pushd and popd commands given to the shell are watched by Emacs to keep 270`cd', `pushd' and `popd' commands given to the shell are watched by Emacs to
268this buffer's default directory the same as the shell's working directory. 271keep this buffer's default directory the same as the shell's working directory.
269M-x dirs queries the shell and resyncs Emacs' idea of what the current 272\\[dirs] queries the shell and resyncs Emacs' idea of what the current
270 directory stack is. 273 directory stack is.
271M-x dirtrack-toggle turns directory tracking on and off. 274\\[dirtrack-toggle] turns directory tracking on and off.
272 275
273\\{shell-mode-map} 276\\{shell-mode-map}
274Customization: Entry to this mode runs the hooks on `comint-mode-hook' and 277Customization: Entry to this mode runs the hooks on `comint-mode-hook' and