diff options
Diffstat (limited to 'lisp/eshell/em-script.el')
| -rw-r--r-- | lisp/eshell/em-script.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/em-script.el b/lisp/eshell/em-script.el index 0371ee86b6d..183faa1dd77 100644 --- a/lisp/eshell/em-script.el +++ b/lisp/eshell/em-script.el | |||
| @@ -36,19 +36,19 @@ commands, as a script file." | |||
| 36 | ;;; User Variables: | 36 | ;;; User Variables: |
| 37 | 37 | ||
| 38 | (defcustom eshell-script-load-hook '(eshell-script-initialize) | 38 | (defcustom eshell-script-load-hook '(eshell-script-initialize) |
| 39 | "*A list of functions to call when loading `eshell-script'." | 39 | "A list of functions to call when loading `eshell-script'." |
| 40 | :type 'hook | 40 | :type 'hook |
| 41 | :group 'eshell-script) | 41 | :group 'eshell-script) |
| 42 | 42 | ||
| 43 | (defcustom eshell-login-script (expand-file-name "login" eshell-directory-name) | 43 | (defcustom eshell-login-script (expand-file-name "login" eshell-directory-name) |
| 44 | "*If non-nil, a file to invoke when starting up Eshell interactively. | 44 | "If non-nil, a file to invoke when starting up Eshell interactively. |
| 45 | This file should be a file containing Eshell commands, where comment | 45 | This file should be a file containing Eshell commands, where comment |
| 46 | lines begin with '#'." | 46 | lines begin with '#'." |
| 47 | :type 'file | 47 | :type 'file |
| 48 | :group 'eshell-script) | 48 | :group 'eshell-script) |
| 49 | 49 | ||
| 50 | (defcustom eshell-rc-script (expand-file-name "profile" eshell-directory-name) | 50 | (defcustom eshell-rc-script (expand-file-name "profile" eshell-directory-name) |
| 51 | "*If non-nil, a file to invoke whenever Eshell is started. | 51 | "If non-nil, a file to invoke whenever Eshell is started. |
| 52 | This includes when running `eshell-command'." | 52 | This includes when running `eshell-command'." |
| 53 | :type 'file | 53 | :type 'file |
| 54 | :group 'eshell-script) | 54 | :group 'eshell-script) |