diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-04-10 10:11:50 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-04-10 10:11:50 -0400 |
commit | e3bd33fb1cecff290724f0aa2c9eb5feeefbca0c (patch) | |
tree | da382c86241684d56a2f9d94b198cfde94d4433d /lisp/eshell/esh-opt.el | |
parent | 526ffbad14265addd63db19903a24a9a6073cea6 (diff) | |
download | emacs-e3bd33fb1cecff290724f0aa2c9eb5feeefbca0c.tar.gz |
Eshell dependencies: Fix recent regressions
* lisp/dired.el (dired-insert-directory): Tweak bug#27817's ugly hack.
* lisp/eshell/em-ls.el: Refine 'require's.
* lisp/eshell/esh-opt.el: Require esh-util on behalf of its clients.
Diffstat (limited to 'lisp/eshell/esh-opt.el')
-rw-r--r-- | lisp/eshell/esh-opt.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el index 5b2693283a7..3ea5873cafd 100644 --- a/lisp/eshell/esh-opt.el +++ b/lisp/eshell/esh-opt.el @@ -33,6 +33,10 @@ ;;; User Functions: +;; Macro expansion of eshell-eval-using-options refers to eshell-stringify-list +;; defined in esh-util. +(require 'esh-util) + (defmacro eshell-eval-using-options (name macro-args options &rest body-forms) "Process NAME's MACRO-ARGS using a set of command line OPTIONS. After doing so, stores settings in local symbols as declared by OPTIONS; |