don't use function-equal in nadvice
[bpt/emacs.git] / lisp / eshell / em-script.el
CommitLineData
ae5e4c48 1;;; em-script.el --- Eshell script files -*- lexical-binding:t -*-
affbf647 2
ba318903 3;; Copyright (C) 1999-2014 Free Software Foundation, Inc.
affbf647 4
7de5b421
GM
5;; Author: John Wiegley <johnw@gnu.org>
6
affbf647
GM
7;; This file is part of GNU Emacs.
8
4ee57b2a 9;; GNU Emacs is free software: you can redistribute it and/or modify
affbf647 10;; it under the terms of the GNU General Public License as published by
4ee57b2a
GM
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
affbf647
GM
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
4ee57b2a 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
affbf647 21
dbba8a04 22;;; Commentary:
affbf647 23
dbba8a04 24;;; Code:
affbf647 25
05c40424 26(require 'eshell)
a464a6c7 27(require 'esh-opt)
05c40424 28
3146b070 29;;;###autoload
35ff222c
GM
30(progn
31(defgroup eshell-script nil
affbf647
GM
32 "This module allows for the execution of files containing Eshell
33commands, as a script file."
34 :tag "Running script files."
35ff222c 35 :group 'eshell-module))
affbf647 36
affbf647
GM
37;;; User Variables:
38
d783d303 39(defcustom eshell-script-load-hook nil
ec60da52 40 "A list of functions to call when loading `eshell-script'."
d783d303 41 :version "24.1" ; removed eshell-script-initialize
affbf647
GM
42 :type 'hook
43 :group 'eshell-script)
44
42c3a9e3 45(defcustom eshell-login-script (expand-file-name "login" eshell-directory-name)
ec60da52 46 "If non-nil, a file to invoke when starting up Eshell interactively.
affbf647
GM
47This file should be a file containing Eshell commands, where comment
48lines begin with '#'."
49 :type 'file
50 :group 'eshell-script)
51
42c3a9e3 52(defcustom eshell-rc-script (expand-file-name "profile" eshell-directory-name)
ec60da52 53 "If non-nil, a file to invoke whenever Eshell is started.
affbf647
GM
54This includes when running `eshell-command'."
55 :type 'file
56 :group 'eshell-script)
57
58;;; Functions:
59
60(defun eshell-script-initialize ()
61 "Initialize the script parsing code."
62 (make-local-variable 'eshell-interpreter-alist)
63 (setq eshell-interpreter-alist
88b00caa
AG
64 (cons (cons #'(lambda (file args)
65 (string= (file-name-nondirectory file)
66 "eshell"))
67 'eshell/source)
affbf647 68 eshell-interpreter-alist))
dace60cf
JW
69 (make-local-variable 'eshell-complex-commands)
70 (setq eshell-complex-commands
71 (append '("source" ".") eshell-complex-commands))
affbf647
GM
72 ;; these two variables are changed through usage, but we don't want
73 ;; to ruin it for other modules
74 (let (eshell-inside-quote-regexp
75 eshell-outside-quote-regexp)
76 (and (not eshell-non-interactive-p)
77 eshell-login-script
78 (file-readable-p eshell-login-script)
79 (eshell-do-eval
80 (list 'eshell-commands
81 (catch 'eshell-replace-command
82 (eshell-source-file eshell-login-script))) t))
83 (and eshell-rc-script
84 (file-readable-p eshell-rc-script)
85 (eshell-do-eval
86 (list 'eshell-commands
87 (catch 'eshell-replace-command
88 (eshell-source-file eshell-rc-script))) t))))
89
90(defun eshell-source-file (file &optional args subcommand-p)
91 "Execute a series of Eshell commands in FILE, passing ARGS.
92Comments begin with '#'."
93 (interactive "f")
94 (let ((orig (point))
95 (here (point-max))
6e13206c 96 (inhibit-point-motion-hooks t))
affbf647 97 (goto-char (point-max))
6e13206c
SM
98 (with-silent-modifications
99 ;; FIXME: Why not use a temporary buffer and avoid this
100 ;; "insert&delete" business? --Stef
101 (insert-file-contents file)
102 (goto-char (point-max))
103 (throw 'eshell-replace-command
104 (prog1
105 (list 'let
106 (list (list 'eshell-command-name (list 'quote file))
107 (list 'eshell-command-arguments
108 (list 'quote args)))
109 (let ((cmd (eshell-parse-command (cons here (point)))))
110 (if subcommand-p
111 (setq cmd (list 'eshell-as-subcommand cmd)))
112 cmd))
113 (delete-region here (point))
114 (goto-char orig))))))
affbf647
GM
115
116(defun eshell/source (&rest args)
117 "Source a file in a subshell environment."
118 (eshell-eval-using-options
119 "source" args
120 '((?h "help" nil nil "show this usage screen")
121 :show-usage
122 :usage "FILE [ARGS]
123Invoke the Eshell commands in FILE in a subshell, binding ARGS to $1,
124$2, etc.")
125 (eshell-source-file (car args) (cdr args) t)))
126
127fd3c2
JW
127(put 'eshell/source 'eshell-no-numeric-conversions t)
128
affbf647
GM
129(defun eshell/. (&rest args)
130 "Source a file in the current environment."
131 (eshell-eval-using-options
132 "." args
133 '((?h "help" nil nil "show this usage screen")
134 :show-usage
135 :usage "FILE [ARGS]
136Invoke the Eshell commands in FILE within the current shell
137environment, binding ARGS to $1, $2, etc.")
138 (eshell-source-file (car args) (cdr args))))
139
127fd3c2
JW
140(put 'eshell/. 'eshell-no-numeric-conversions t)
141
dbba8a04 142(provide 'em-script)
affbf647 143
3146b070
GM
144;; Local Variables:
145;; generated-autoload-file: "esh-groups.el"
146;; End:
147
affbf647 148;;; em-script.el ends here