diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:08:55 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-05 07:08:55 +0000 |
commit | 4e6cc05cc91d58358b73380d61eec1a0b97cb33c (patch) | |
tree | f0aa4d08737c48238a242e45b40a64103d7aa518 /lisp/eshell/esh-opt.el | |
parent | 5477308bb2464b46c7d376e93bf810d64ec4c081 (diff) | |
download | emacs-4e6cc05cc91d58358b73380d61eec1a0b97cb33c.tar.gz emacs-4e6cc05cc91d58358b73380d61eec1a0b97cb33c.tar.bz2 emacs-4e6cc05cc91d58358b73380d61eec1a0b97cb33c.zip |
Require individual files if needed when compiling, rather than
esh-maint. Collect any require statements. Leave provide at start.
Move any commentary to start.
Diffstat (limited to 'lisp/eshell/esh-opt.el')
-rw-r--r-- | lisp/eshell/esh-opt.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el index 121f568a9c4..953284e5392 100644 --- a/lisp/eshell/esh-opt.el +++ b/lisp/eshell/esh-opt.el @@ -22,9 +22,11 @@ ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. +;;; Commentary: + (provide 'esh-opt) -(eval-when-compile (require 'esh-maint)) +(eval-when-compile (require 'esh-ext)) (defgroup eshell-opt nil "The options processing code handles command argument parsing for @@ -32,8 +34,6 @@ Eshell commands implemented in Lisp." :tag "Command options processing" :group 'eshell) -;;; Commentary: - ;;; User Functions: (defmacro eshell-eval-using-options (name macro-args |