From: Glenn Morris Date: Wed, 28 Feb 2018 19:35:56 +0000 (-0500) Subject: Quieten eshell compilation X-Git-Tag: emacs-27.0.90~5592 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f25eae17e6cc11e675a0f938ccb1694ce9c2fd4;p=emacs.git Quieten eshell compilation * lisp/eshell/em-tramp.el: Require esh-cmd. * lisp/eshell/esh-ext.el: Requie esh-io at runtime too. --- diff --git a/lisp/eshell/em-tramp.el b/lisp/eshell/em-tramp.el index c45453bf288..004c4954908 100644 --- a/lisp/eshell/em-tramp.el +++ b/lisp/eshell/em-tramp.el @@ -26,6 +26,7 @@ ;;; Code: (require 'esh-util) +(require 'esh-cmd) (eval-when-compile (require 'esh-mode) diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index 1bfab23c220..ba5182deb45 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el @@ -37,8 +37,8 @@ (eval-when-compile (require 'cl-lib) - (require 'esh-io) (require 'esh-cmd)) +(require 'esh-io) (require 'esh-arg) (require 'esh-opt) (require 'esh-proc)