diff options
author | JSDurand <mmemmew@gmail.com> | 2023-02-28 12:31:13 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-02-28 12:31:13 +0800 |
commit | c44a100ea18c9eaba2d601f148488a60abd567d7 (patch) | |
tree | c1e3ab2dd68be4104a6709fe00004681a3b9494b | |
parent | 03a07cd49cf2cd8ba51e855347c0e175f86934c9 (diff) |
eshell: add two definitions of variables to avoid errors
* eshell-conf.el (dereference-links, dired-flag): Eshell uses locally
bound variables for some reason, so we need to provide definitions
for those variables in order to avoid errors.
-rw-r--r-- | eshell-conf.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eshell-conf.el b/eshell-conf.el index f77f5d3..6911901 100644 --- a/eshell-conf.el +++ b/eshell-conf.el @@ -386,6 +386,8 @@ candidates." (defvar insert-func nil) (defvar flush-func nil) (defvar error-func nil) +(defvar dereference-links nil) +(defvar dired-flag nil) ;;;; Convenient wrapper |