diff options
| author | Richard M. Stallman | 1998-06-28 22:43:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-06-28 22:43:25 +0000 |
| commit | a9e73449bf5654b680158a6a0019671746b2dd66 (patch) | |
| tree | 712b49cdc5a89ec26374dc98f44a366c9635bdf5 | |
| parent | 52c90d8469a355973e9aa8949d6e022d4c5b04f5 (diff) | |
| download | emacs-a9e73449bf5654b680158a6a0019671746b2dd66.tar.gz emacs-a9e73449bf5654b680158a6a0019671746b2dd66.zip | |
(shell-copy-environment-variable): Fix doc typo.
| -rw-r--r-- | lisp/shell.el | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index a62ea1fdee7..03d06cae7e8 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -63,24 +63,24 @@ | |||
| 63 | ;;============================================================================ | 63 | ;;============================================================================ |
| 64 | ;; Comint Mode Commands: (common to shell and all comint-derived modes) | 64 | ;; Comint Mode Commands: (common to shell and all comint-derived modes) |
| 65 | ;; | 65 | ;; |
| 66 | ;; m-p comint-previous-input Cycle backwards in input history | 66 | ;; m-p comint-previous-input Cycle backwards in input history |
| 67 | ;; m-n comint-next-input Cycle forwards | 67 | ;; m-n comint-next-input Cycle forwards |
| 68 | ;; m-r comint-previous-matching-input Previous input matching a regexp | 68 | ;; m-r comint-previous-matching-input Previous input matching a regexp |
| 69 | ;; m-s comint-next-matching-input Next input that matches | 69 | ;; m-s comint-next-matching-input Next input that matches |
| 70 | ;; m-c-l comint-show-output Show last batch of process output | 70 | ;; m-c-l comint-show-output Show last batch of process output |
| 71 | ;; return comint-send-input | 71 | ;; return comint-send-input |
| 72 | ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff. | 72 | ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff. |
| 73 | ;; c-c c-a comint-bol Beginning of line; skip prompt | 73 | ;; c-c c-a comint-bol Beginning of line; skip prompt |
| 74 | ;; c-c c-u comint-kill-input ^u | 74 | ;; c-c c-u comint-kill-input ^u |
| 75 | ;; c-c c-w backward-kill-word ^w | 75 | ;; c-c c-w backward-kill-word ^w |
| 76 | ;; c-c c-c comint-interrupt-subjob ^c | 76 | ;; c-c c-c comint-interrupt-subjob ^c |
| 77 | ;; c-c c-z comint-stop-subjob ^z | 77 | ;; c-c c-z comint-stop-subjob ^z |
| 78 | ;; c-c c-\ comint-quit-subjob ^\ | 78 | ;; c-c c-\ comint-quit-subjob ^\ |
| 79 | ;; c-c c-o comint-kill-output Delete last batch of process output | 79 | ;; c-c c-o comint-kill-output Delete last batch of process output |
| 80 | ;; c-c c-r comint-show-output Show last batch of process output | 80 | ;; c-c c-r comint-show-output Show last batch of process output |
| 81 | ;; c-c c-h comint-dynamic-list-input-ring List input history | 81 | ;; c-c c-h comint-dynamic-list-input-ring List input history |
| 82 | ;; send-invisible Read line w/o echo & send to proc | 82 | ;; send-invisible Read line w/o echo & send to proc |
| 83 | ;; comint-continue-subjob Useful if you accidentally suspend | 83 | ;; comint-continue-subjob Useful if you accidentally suspend |
| 84 | ;; top-level job | 84 | ;; top-level job |
| 85 | ;; comint-mode-hook is the comint mode hook. | 85 | ;; comint-mode-hook is the comint mode hook. |
| 86 | 86 | ||
| @@ -91,8 +91,8 @@ | |||
| 91 | ;; List completions in help buffer | 91 | ;; List completions in help buffer |
| 92 | ;; m-c-f shell-forward-command Forward a shell command | 92 | ;; m-c-f shell-forward-command Forward a shell command |
| 93 | ;; m-c-b shell-backward-command Backward a shell command | 93 | ;; m-c-b shell-backward-command Backward a shell command |
| 94 | ;; dirs Resync the buffer's dir stack | 94 | ;; dirs Resync the buffer's dir stack |
| 95 | ;; dirtrack-mode Turn dir tracking on/off | 95 | ;; dirtrack-mode Turn dir tracking on/off |
| 96 | ;; comint-strip-ctrl-m Remove trailing ^Ms from output | 96 | ;; comint-strip-ctrl-m Remove trailing ^Ms from output |
| 97 | ;; | 97 | ;; |
| 98 | ;; The shell mode hook is shell-mode-hook | 98 | ;; The shell mode hook is shell-mode-hook |
| @@ -758,7 +758,7 @@ command again." | |||
| 758 | "Copy the environment variable VARIABLE from the subshell to Emacs. | 758 | "Copy the environment variable VARIABLE from the subshell to Emacs. |
| 759 | This command reads the value of the specified environment variable | 759 | This command reads the value of the specified environment variable |
| 760 | in the shell, and sets the same environment variable in Emacs | 760 | in the shell, and sets the same environment variable in Emacs |
| 761 | \(what `getenv' in Emacvs would return) to that value. | 761 | \(what `getenv' in Emacs would return) to that value. |
| 762 | That value will affect any new subprocesses that you subsequently start | 762 | That value will affect any new subprocesses that you subsequently start |
| 763 | from Emacs." | 763 | from Emacs." |
| 764 | (interactive (list (read-envvar-name "\ | 764 | (interactive (list (read-envvar-name "\ |