diff options
| author | Stefan Monnier | 2017-08-04 00:05:00 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2017-08-04 00:05:00 -0400 |
| commit | 28e000435e1dfdc071cd4b68afe8514dcf9b3aa2 (patch) | |
| tree | 34d996b878f01fb405966b4fea0419883b45ee37 /lisp/shell.el | |
| parent | e8ca0c5e16a6887691ee3db739abfdba25e0d578 (diff) | |
| download | emacs-28e000435e1dfdc071cd4b68afe8514dcf9b3aa2.tar.gz emacs-28e000435e1dfdc071cd4b68afe8514dcf9b3aa2.zip | |
* lisp/shell.el (explicit-shell-file-name): Mention shell-file-name
* lisp/files.el (insert-directory): Don't hardcode "-c".
* lisp/term.el (term, ansi-term): Use shell-file-name.
Diffstat (limited to 'lisp/shell.el')
| -rw-r--r-- | lisp/shell.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el index c5e5cbbee7e..ea7f0beebb0 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -264,7 +264,9 @@ see the function `dirtrack-mode'." | |||
| 264 | :group 'shell-directories) | 264 | :group 'shell-directories) |
| 265 | 265 | ||
| 266 | (defcustom explicit-shell-file-name nil | 266 | (defcustom explicit-shell-file-name nil |
| 267 | "If non-nil, is file name to use for explicitly requested inferior shell." | 267 | "If non-nil, is file name to use for explicitly requested inferior shell. |
| 268 | When nil, such interactive shell sessions fallback to using either | ||
| 269 | the shell specified in $ESHELL or in `shell-file-name'." | ||
| 268 | :type '(choice (const :tag "None" nil) file) | 270 | :type '(choice (const :tag "None" nil) file) |
| 269 | :group 'shell) | 271 | :group 'shell) |
| 270 | 272 | ||