diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-04-27 13:54:39 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-04-27 13:54:39 +0000 |
commit | 8a1b44469567d4ce8ec4a89817e993cc7a700b3e (patch) | |
tree | 8daed7dae67ab29aba8760f3ea10f572c04abfaf /lisp/eshell | |
parent | 819da85b3b5a034c2bfb6cdcf682dff417b32c4d (diff) | |
download | emacs-8a1b44469567d4ce8ec4a89817e993cc7a700b3e.tar.gz |
Add "(require 'eshell)", to get necessary features
when M-x customize-group loads modules before the main
eshell.el.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/em-alias.el | 3 | ||||
-rw-r--r-- | lisp/eshell/em-dirs.el | 3 | ||||
-rw-r--r-- | lisp/eshell/em-hist.el | 1 | ||||
-rw-r--r-- | lisp/eshell/em-unix.el | 3 |
4 files changed, 7 insertions, 3 deletions
diff --git a/lisp/eshell/em-alias.el b/lisp/eshell/em-alias.el index 0312f9d7ada..02af7531b3f 100644 --- a/lisp/eshell/em-alias.el +++ b/lisp/eshell/em-alias.el @@ -1,6 +1,6 @@ ;;; em-alias.el --- creation and management of command aliases -;; Copyright (C) 1999, 2000 Free Software Foundation +;; Copyright (C) 1999, 2000, 2004 Free Software Foundation ;; Author: John Wiegley <johnw@gnu.org> @@ -24,6 +24,7 @@ (provide 'em-alias) (eval-when-compile (require 'esh-maint)) +(require 'eshell) (defgroup eshell-alias nil "Command aliases allow for easy definition of alternate commands." diff --git a/lisp/eshell/em-dirs.el b/lisp/eshell/em-dirs.el index 73837c324a5..7b74069454b 100644 --- a/lisp/eshell/em-dirs.el +++ b/lisp/eshell/em-dirs.el @@ -1,6 +1,6 @@ ;;; em-dirs.el --- directory navigation commands -;; Copyright (C) 1999, 2000 Free Software Foundation +;; Copyright (C) 1999, 2000, 2004 Free Software Foundation ;; Author: John Wiegley <johnw@gnu.org> @@ -24,6 +24,7 @@ (provide 'em-dirs) (eval-when-compile (require 'esh-maint)) +(require 'eshell) (defgroup eshell-dirs nil "Directory navigation involves changing directories, examining the diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el index b38c7a519ec..f4bfea798e0 100644 --- a/lisp/eshell/em-hist.el +++ b/lisp/eshell/em-hist.el @@ -24,6 +24,7 @@ (provide 'em-hist) (eval-when-compile (require 'esh-maint)) +(require 'eshell) (defgroup eshell-hist nil "This module provides command history management." diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el index 8446eb1aa9d..43d3c9c4e5e 100644 --- a/lisp/eshell/em-unix.el +++ b/lisp/eshell/em-unix.el @@ -1,6 +1,6 @@ ;;; em-unix.el --- UNIX command aliases -;; Copyright (C) 1999, 2000, 2001 Free Software Foundation +;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation ;; Author: John Wiegley <johnw@gnu.org> @@ -24,6 +24,7 @@ (provide 'em-unix) (eval-when-compile (require 'esh-maint)) +(require 'eshell) (defgroup eshell-unix nil "This module defines many of the more common UNIX utilities as |