diff options
Diffstat (limited to 'lisp/eshell/em-script.el')
| -rw-r--r-- | lisp/eshell/em-script.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el index d76e19cdd07..f219a4b6f12 100644 --- a/lisp/eshell/em-script.el +++ b/lisp/eshell/em-script.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-script.el --- Eshell script files | 1 | ;;; em-script.el --- Eshell script files |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2011 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
| @@ -24,13 +24,15 @@ | |||
| 24 | ;;; Code: | 24 | ;;; Code: |
| 25 | 25 | ||
| 26 | (require 'eshell) | 26 | (require 'eshell) |
| 27 | (require 'esh-opt) | ||
| 27 | 28 | ||
| 28 | ;;;###autoload | 29 | ;;;###autoload |
| 29 | (eshell-defgroup eshell-script nil | 30 | (progn |
| 31 | (defgroup eshell-script nil | ||
| 30 | "This module allows for the execution of files containing Eshell | 32 | "This module allows for the execution of files containing Eshell |
| 31 | commands, as a script file." | 33 | commands, as a script file." |
| 32 | :tag "Running script files." | 34 | :tag "Running script files." |
| 33 | :group 'eshell-module) | 35 | :group 'eshell-module)) |
| 34 | 36 | ||
| 35 | ;;; User Variables: | 37 | ;;; User Variables: |
| 36 | 38 | ||