diff options
| author | Eli Zaretskii | 2004-04-27 13:54:39 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2004-04-27 13:54:39 +0000 |
| commit | 8a1b44469567d4ce8ec4a89817e993cc7a700b3e (patch) | |
| tree | 8daed7dae67ab29aba8760f3ea10f572c04abfaf | |
| parent | 819da85b3b5a034c2bfb6cdcf682dff417b32c4d (diff) | |
| download | emacs-8a1b44469567d4ce8ec4a89817e993cc7a700b3e.tar.gz emacs-8a1b44469567d4ce8ec4a89817e993cc7a700b3e.zip | |
Add "(require 'eshell)", to get necessary features
when M-x customize-group loads modules before the main
eshell.el.
| -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 @@ | |||
| 1 | ;;; em-alias.el --- creation and management of command aliases | 1 | ;;; em-alias.el --- creation and management of command aliases |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2004 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -24,6 +24,7 @@ | |||
| 24 | (provide 'em-alias) | 24 | (provide 'em-alias) |
| 25 | 25 | ||
| 26 | (eval-when-compile (require 'esh-maint)) | 26 | (eval-when-compile (require 'esh-maint)) |
| 27 | (require 'eshell) | ||
| 27 | 28 | ||
| 28 | (defgroup eshell-alias nil | 29 | (defgroup eshell-alias nil |
| 29 | "Command aliases allow for easy definition of alternate commands." | 30 | "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 @@ | |||
| 1 | ;;; em-dirs.el --- directory navigation commands | 1 | ;;; em-dirs.el --- directory navigation commands |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2004 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -24,6 +24,7 @@ | |||
| 24 | (provide 'em-dirs) | 24 | (provide 'em-dirs) |
| 25 | 25 | ||
| 26 | (eval-when-compile (require 'esh-maint)) | 26 | (eval-when-compile (require 'esh-maint)) |
| 27 | (require 'eshell) | ||
| 27 | 28 | ||
| 28 | (defgroup eshell-dirs nil | 29 | (defgroup eshell-dirs nil |
| 29 | "Directory navigation involves changing directories, examining the | 30 | "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 @@ | |||
| 24 | (provide 'em-hist) | 24 | (provide 'em-hist) |
| 25 | 25 | ||
| 26 | (eval-when-compile (require 'esh-maint)) | 26 | (eval-when-compile (require 'esh-maint)) |
| 27 | (require 'eshell) | ||
| 27 | 28 | ||
| 28 | (defgroup eshell-hist nil | 29 | (defgroup eshell-hist nil |
| 29 | "This module provides command history management." | 30 | "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 @@ | |||
| 1 | ;;; em-unix.el --- UNIX command aliases | 1 | ;;; em-unix.el --- UNIX command aliases |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation | 3 | ;; Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -24,6 +24,7 @@ | |||
| 24 | (provide 'em-unix) | 24 | (provide 'em-unix) |
| 25 | 25 | ||
| 26 | (eval-when-compile (require 'esh-maint)) | 26 | (eval-when-compile (require 'esh-maint)) |
| 27 | (require 'eshell) | ||
| 27 | 28 | ||
| 28 | (defgroup eshell-unix nil | 29 | (defgroup eshell-unix nil |
| 29 | "This module defines many of the more common UNIX utilities as | 30 | "This module defines many of the more common UNIX utilities as |