diff options
| author | Stefan Monnier | 2018-07-18 10:23:20 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2018-07-18 10:23:20 -0400 |
| commit | 04a32fa60bead4359bc9353af67f26958c795593 (patch) | |
| tree | 4252eb9289456b71892afc059162f0a04930ab72 /lisp/shell.el | |
| parent | 343b29381cc53d53b1a2c1fdfacf0f5c4761f505 (diff) | |
| download | emacs-04a32fa60bead4359bc9353af67f26958c795593.tar.gz emacs-04a32fa60bead4359bc9353af67f26958c795593.zip | |
* lisp/comint.el: Clean up namespace
(shell-strip-ctrl-m): Mark as obsolete.
(comint-send-invisible): Rename from `send-invisible`.
(send-invisible): Make it an obsolete alias.
* lisp/net/rlogin.el: Adjust accordingly; Use lexical-binding.
* lisp/shell.el: Adjust accordingly.
Diffstat (limited to 'lisp/shell.el')
| -rw-r--r-- | lisp/shell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index fa6eee0f187..ac6f11aeb40 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -73,7 +73,7 @@ | |||
| 73 | ;; c-c c-o comint-delete-output Delete last batch of process output | 73 | ;; c-c c-o comint-delete-output Delete last batch of process output |
| 74 | ;; c-c c-r comint-show-output Show last batch of process output | 74 | ;; c-c c-r comint-show-output Show last batch of process output |
| 75 | ;; c-c c-l comint-dynamic-list-input-ring List input history | 75 | ;; c-c c-l comint-dynamic-list-input-ring List input history |
| 76 | ;; send-invisible Read line w/o echo & send to proc | 76 | ;; comint-send-invisible Read line w/o echo & send to proc |
| 77 | ;; comint-continue-subjob Useful if you accidentally suspend | 77 | ;; comint-continue-subjob Useful if you accidentally suspend |
| 78 | ;; top-level job | 78 | ;; top-level job |
| 79 | ;; comint-mode-hook is the comint mode hook. | 79 | ;; comint-mode-hook is the comint mode hook. |
| @@ -500,7 +500,7 @@ Shell buffers. It implements `shell-completion-execonly' for | |||
| 500 | the end of process to the end of the current line. | 500 | the end of process to the end of the current line. |
| 501 | \\[comint-send-input] before end of process output copies the current line minus the prompt to | 501 | \\[comint-send-input] before end of process output copies the current line minus the prompt to |
| 502 | the end of the buffer and sends it (\\[comint-copy-old-input] just copies the current line). | 502 | the end of the buffer and sends it (\\[comint-copy-old-input] just copies the current line). |
| 503 | \\[send-invisible] reads a line of text without echoing it, and sends it to | 503 | \\[comint-send-invisible] reads a line of text without echoing it, and sends it to |
| 504 | the shell. This is useful for entering passwords. Or, add the function | 504 | the shell. This is useful for entering passwords. Or, add the function |
| 505 | `comint-watch-for-password-prompt' to `comint-output-filter-functions'. | 505 | `comint-watch-for-password-prompt' to `comint-output-filter-functions'. |
| 506 | 506 | ||