aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Porter2024-01-25 17:12:28 -0800
committerJim Porter2024-01-25 17:12:28 -0800
commit4834be0949e13a728b69ab97ac9c8a0dbec65f3a (patch)
treecc1965ba3f3023d91363ea1af50afd27fd7cc92f
parent737d46e04d73dbad84bf0225cebb1c936ff89365 (diff)
downloademacs-4834be0949e13a728b69ab97ac9c8a0dbec65f3a.tar.gz
emacs-4834be0949e13a728b69ab97ac9c8a0dbec65f3a.zip
; For compatibility, eshell/make should print to Eshell unless backgrounded
* lisp/eshell/em-unix.el (eshell/make): Pass 'plain' to eshell-compile when in the foreground (bug#68724).
-rw-r--r--lisp/eshell/em-unix.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 75afaf1c104..b066e9eeb8e 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -741,7 +741,7 @@ Fallback to standard make when called synchronously."
741 (eshell-compile "make" args 741 (eshell-compile "make" args
742 ;; Use plain output unless we're executing in the 742 ;; Use plain output unless we're executing in the
743 ;; background. 743 ;; background.
744 (not eshell-current-subjob-p))) 744 (unless eshell-current-subjob-p 'plain)))
745 745
746(put 'eshell/make 'eshell-no-numeric-conversions t) 746(put 'eshell/make 'eshell-no-numeric-conversions t)
747 747