diff options
author | Noam Postavsky <npostavs@gmail.com> | 2018-09-19 18:57:37 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-09-19 18:57:37 -0400 |
commit | b3baf997c8e9bbff351e0bf24b8fdae8831ec1df (patch) | |
tree | b51bd8032538f505ccb4942e91855598e38c057b /lisp/eshell | |
parent | 98544ea3ea1638228db48c5ff993caded470d9c1 (diff) | |
download | emacs-b3baf997c8e9bbff351e0bf24b8fdae8831ec1df.tar.gz emacs-b3baf997c8e9bbff351e0bf24b8fdae8831ec1df.tar.bz2 emacs-b3baf997c8e9bbff351e0bf24b8fdae8831ec1df.zip |
Document synchronous behavior of eshell/make (Bug#32513)
* doc/misc/eshell.texi (Built-ins):
* lisp/eshell/em-unix.el (eshell/make): Mention that it falls back to
the external 'make' command when called synchronously.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/em-unix.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el index b00b6654cc5..b569f909938 100644 --- a/lisp/eshell/em-unix.el +++ b/lisp/eshell/em-unix.el @@ -656,7 +656,8 @@ Concatenate FILE(s), or standard input, to standard output.") ;; special front-end functions for compilation-mode buffers (defun eshell/make (&rest args) - "Use `compile' to do background makes." + "Use `compile' to do background makes. +Fallback to standard make when called synchronously." (if (and eshell-current-subjob-p (eshell-interactive-output-p)) (let ((compilation-process-setup-function |