branch: elpa/eat
commit 62a09caef1fc4a8219eefe74b3902bfa09ffc4eb
Author: Akib Azmain Turja <[email protected]>
Commit: Akib Azmain Turja <[email protected]>
* eat.el (eat--t-term): Fix initial value of 'cwd'
---
eat.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eat.el b/eat.el
index 9853c7e75c..5ab017e3c2 100644
--- a/eat.el
+++ b/eat.el
@@ -742,7 +742,7 @@ For example: when THRESHOLD is 3, \"*foobarbaz\" is
converted to
(end nil :documentation "End of terminal area.")
(title "" :documentation "The title of the terminal.")
(cwd
- default-directory
+ (cons (system-name) default-directory)
:documentation "The working directory of the terminal.")
(bell-fn
(1value #'ignore)