1 ;;; esh-cmd.el --- command invocation
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: John Wiegley <johnw@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;_* Invoking external commands
27 ;; External commands cause processes to be created, by loading
28 ;; external executables into memory. This is what most normal shells
29 ;; do, most of the time. For more information, see [External commands].
31 ;;;_* Invoking Lisp functions
33 ;; A Lisp function can be invoked using Lisp syntax, or command shell
34 ;; syntax. For example, to run `dired' to edit the current directory:
42 ;; The latter form is preferable, but the former is more precise,
43 ;; since it involves no translations. See [Argument parsing], to
44 ;; learn more about how arguments are transformed before passing them
47 ;; Ordinarily, if 'dired' were also available as an external command,
48 ;; the external version would be called in preference to any Lisp
49 ;; function of the same name. To change this behavior so that Lisp
50 ;; functions always take precedence, set
51 ;; `eshell-prefer-lisp-functions' to t.
55 ;; Whenever a command is specified using a simple name, such as 'ls',
56 ;; Eshell will first look for a Lisp function of the name `eshell/ls'.
57 ;; If it exists, it will be called in preference to any other command
58 ;; which might have matched the name 'ls' (such as command aliases,
59 ;; external commands, Lisp functions of that name, etc).
61 ;; This is the most flexible mechanism for creating new commands,
62 ;; since it does not pollute the global namespace, yet allows you to
63 ;; use all of Lisp's facilities to define that piece of functionality.
64 ;; Most of Eshell's "builtin" commands are defined as alias functions.
68 ;; It is possible to invoke a Lisp form as an argument. This can be
69 ;; done either by specifying the form as you might in Lisp, or by
70 ;; using the '$' character to introduce a value-interpolation:
78 ;; The two forms are equivalent. The second is required only if the
79 ;; form being interpolated is within a string, or is a subexpression
80 ;; of a larger argument:
82 ;; echo x$(+ 1 2) "String $(+ 1 2)"
84 ;; To pass a Lisp symbol as a argument, use the alternate quoting
85 ;; syntax, since the single quote character is far too overused in
90 ;; Backquote can also be used:
92 ;; echo `(list ,lisp-symbol)
94 ;; Lisp arguments are identified using the following regexp:
98 ;; There are several hooks involved with command execution, which can
99 ;; be used either to change or augment Eshell's behavior.
105 (unless (featurep 'xemacs
)
113 (require 'pcomplete
))
116 (defgroup eshell-cmd nil
117 "Executing an Eshell command is as simple as typing it in and
118 pressing <RET>. There are several different kinds of commands,
120 :tag
"Command invocation"
121 ;; :link '(info-link "(eshell)Command invocation")
124 (defcustom eshell-prefer-lisp-functions nil
125 "*If non-nil, prefer Lisp functions to external commands."
129 (defcustom eshell-lisp-regexp
"\\([(`]\\|#'\\)"
130 "*A regexp which, if matched at beginning of an argument, means Lisp.
131 Such arguments will be passed to `read', and then evaluated."
135 (defcustom eshell-pre-command-hook nil
136 "*A hook run before each interactive command is invoked."
140 (defcustom eshell-post-command-hook nil
141 "*A hook run after each interactive command is invoked."
145 (defcustom eshell-prepare-command-hook nil
146 "*A set of functions called to prepare a named command.
147 The command name and its argument are in `eshell-last-command-name'
148 and `eshell-last-arguments'. The functions on this hook can change
149 the value of these symbols if necessary.
151 To prevent a command from executing at all, set
152 `eshell-last-command-name' to nil."
156 (defcustom eshell-named-command-hook nil
157 "*A set of functions called before a named command is invoked.
158 Each function will be passed the command name and arguments that were
159 passed to `eshell-named-command'.
161 If any of the functions returns a non-nil value, the named command
162 will not be invoked, and that value will be returned from
163 `eshell-named-command'.
165 In order to substitute an alternate command form for execution, the
166 hook function should throw it using the tag `eshell-replace-command'.
169 (add-hook 'eshell-named-command-hook 'subst-with-cd)
170 (defun subst-with-cd (command args)
171 (throw 'eshell-replace-command
172 (eshell-parse-command \"cd\" args)))
174 Although useless, the above code will cause any non-glob, non-Lisp
175 command (i.e., 'ls' as opposed to '*ls' or '(ls)') to be replaced by a
176 call to `cd' using the arguments that were passed to the function."
180 (defcustom eshell-pre-rewrite-command-hook
181 '(eshell-no-command-conversion
182 eshell-subcommand-arg-values
)
183 "*A hook run before command rewriting begins.
184 The terms of the command to be rewritten is passed as arguments, and
185 may be modified in place. Any return value is ignored."
189 (defcustom eshell-rewrite-command-hook
190 '(eshell-rewrite-for-command
191 eshell-rewrite-while-command
192 eshell-rewrite-if-command
193 eshell-rewrite-sexp-command
194 eshell-rewrite-initial-subcommand
195 eshell-rewrite-named-command
)
196 "*A set of functions used to rewrite the command argument.
197 Once parsing of a command line is completed, the next step is to
198 rewrite the initial argument into something runnable.
200 A module may wish to associate special behavior with certain argument
201 syntaxes at the beginning of a command line. They are welcome to do
202 so by adding a function to this hook. The first function to return a
203 substitute command form is the one used. Each function is passed the
204 command's full argument list, which is a list of sexps (typically
209 (defcustom eshell-post-rewrite-command-hook nil
210 "*A hook run after command rewriting is finished.
211 Each function is passed the symbol containing the rewritten command,
212 which may be modified directly. Any return value is ignored."
216 (defcustom eshell-complex-commands
'("ls")
217 "*A list of commands names or functions, that determine complexity.
218 That is, if a command is defined by a function named eshell/NAME,
219 and NAME is part of this list, it is invoked as a complex command.
220 Complex commands are always correct, but run much slower. If a
221 command works fine without being part of this list, then it doesn't
224 If an entry is a function, it will be called with the name, and should
225 return non-nil if the command is complex."
226 :type
'(repeat :tag
"Commands"
227 (choice (string :tag
"Name")
228 (function :tag
"Predicate")))
233 (defcustom eshell-cmd-load-hook
'(eshell-cmd-initialize)
234 "*A hook that gets run when `eshell-cmd' is loaded."
238 (defcustom eshell-debug-command nil
239 "*If non-nil, enable debugging code. SSLLOOWW.
240 This option is only useful for reporting bugs. If you enable it, you
241 will have to visit the file 'eshell-cmd.el' and run the command
246 (defcustom eshell-deferrable-commands
247 '(eshell-named-command
249 eshell-process-identity
)
250 "*A list of functions which might return an ansychronous process.
251 If they return a process object, execution of the calling Eshell
252 command will wait for completion (in the background) before finishing
254 :type
'(repeat function
)
257 (defcustom eshell-subcommand-bindings
258 '((eshell-in-subcommand-p t
)
259 (default-directory default-directory
)
260 (process-environment (eshell-copy-environment)))
261 "*A list of `let' bindings for subcommand environments."
265 (put 'risky-local-variable
'eshell-subcommand-bindings t
)
267 (defvar eshell-ensure-newline-p nil
268 "If non-nil, ensure that a newline is emitted after a Lisp form.
269 This can be changed by Lisp forms that are evaluated from the Eshell
272 ;;; Internal Variables:
274 (defvar eshell-current-command nil
)
275 (defvar eshell-command-name nil
)
276 (defvar eshell-command-arguments nil
)
277 (defvar eshell-in-pipeline-p nil
278 "Internal Eshell variable, non-nil inside a pipeline.
279 Has the value 'first, 'last for the first/last commands in the pipeline,
281 (defvar eshell-in-subcommand-p nil
)
282 (defvar eshell-last-arguments nil
)
283 (defvar eshell-last-command-name nil
)
284 (defvar eshell-last-async-proc nil
285 "When this foreground process completes, resume command evaluation.")
289 (defsubst eshell-interactive-process
()
290 "Return currently running command process, if non-Lisp."
291 eshell-last-async-proc
)
293 (defun eshell-cmd-initialize ()
294 "Initialize the Eshell command processing module."
295 (set (make-local-variable 'eshell-current-command
) nil
)
296 (set (make-local-variable 'eshell-command-name
) nil
)
297 (set (make-local-variable 'eshell-command-arguments
) nil
)
298 (set (make-local-variable 'eshell-last-arguments
) nil
)
299 (set (make-local-variable 'eshell-last-command-name
) nil
)
300 (set (make-local-variable 'eshell-last-async-proc
) nil
)
302 (add-hook 'eshell-kill-hook
'eshell-resume-command nil t
)
304 ;; make sure that if a command is over, and no process is being
305 ;; waited for, that `eshell-current-command' is set to nil. This
306 ;; situation can occur, for example, if a Lisp function results in
307 ;; `debug' being called, and the user then types \\[top-level]
308 (add-hook 'eshell-post-command-hook
311 (setq eshell-current-command nil
312 eshell-last-async-proc nil
))) nil t
)
314 (add-hook 'eshell-parse-argument-hook
315 'eshell-parse-subcommand-argument nil t
)
316 (add-hook 'eshell-parse-argument-hook
317 'eshell-parse-lisp-argument nil t
)
319 (when (eshell-using-module 'eshell-cmpl
)
320 (add-hook 'pcomplete-try-first-hook
321 'eshell-complete-lisp-symbols nil t
)))
323 (eshell-deftest var last-result-var
324 "\"last result\" variable"
325 (eshell-command-result-p "+ 1 2; + $$ 2" "3\n5\n"))
327 (eshell-deftest var last-result-var2
328 "\"last result\" variable"
329 (eshell-command-result-p "+ 1 2; + $$ $$" "3\n6\n"))
331 (eshell-deftest var last-arg-var
332 "\"last arg\" variable"
333 (eshell-command-result-p "+ 1 2; + $_ 4" "3\n6\n"))
335 (defun eshell-complete-lisp-symbols ()
336 "If there is a user reference, complete it."
337 (let ((arg (pcomplete-actual-arg)))
338 (when (string-match (concat "\\`" eshell-lisp-regexp
) arg
)
339 (setq pcomplete-stub
(substring arg
(match-end 0))
340 pcomplete-last-completion-raw t
)
341 (throw 'pcomplete-completions
342 (all-completions pcomplete-stub obarray
'boundp
)))))
346 (defun eshell-parse-command (command &optional args top-level
)
347 "Parse the COMMAND, adding ARGS if given.
348 COMMAND can either be a string, or a cons cell demarcating a buffer
349 region. TOP-LEVEL, if non-nil, means that the outermost command (the
350 user's input command) is being parsed, and that pre and post command
351 hooks should be run before and after the command."
356 (eshell-parse-arguments (car command
) (cdr command
))
358 (inhibit-point-motion-hooks t
)
359 after-change-functions
)
362 (eshell-parse-arguments here
(point))
363 (delete-region here
(point)))))
369 (if (or (not (car sep-terms
))
370 (string= (car sep-terms
) ";"))
372 (eshell-parse-pipeline cmd
(not (car sep-terms
))))
374 (list 'eshell-do-subjob
375 (list 'list
(eshell-parse-pipeline cmd
)))))
376 (setq sep-terms
(cdr sep-terms
))
377 (if eshell-in-pipeline-p
379 (list 'eshell-trap-errors cmd
))))
380 (eshell-separate-commands terms
"[&;]" nil
'sep-terms
))))
381 (let ((cmd commands
))
384 (setcar cmd
(list 'eshell-commands
(car cmd
))))
385 (setq cmd
(cdr cmd
))))
387 (append (list 'progn
)
389 (list '(run-hooks 'eshell-pre-command-hook
)))
393 (list 'catch
(quote 'top-level
)
394 (append (list 'progn
) commands
))
395 '(run-hooks 'eshell-post-command-hook
)))))
397 (list 'eshell-commands commands
)
400 (defun eshell-debug-command (tag subform
)
401 "Output a debugging message to '*eshell last cmd*'."
402 (let ((buf (get-buffer-create "*eshell last cmd*"))
403 (text (eshell-stringify eshell-current-command
)))
404 (with-current-buffer buf
407 (insert "\n\C-l\n" tag
"\n\n" text
409 (concat "\n\n" (eshell-stringify subform
)) ""))))))
411 (defun eshell-debug-show-parsed-args (terms)
412 "Display parsed arguments in the debug buffer."
414 (if eshell-debug-command
415 (eshell-debug-command "parsed arguments" terms
))))
417 (defun eshell-no-command-conversion (terms)
418 "Don't convert the command argument."
420 (if (and (listp (car terms
))
421 (eq (caar terms
) 'eshell-convert
))
422 (setcar terms
(cadr (car terms
))))))
424 (defun eshell-subcommand-arg-values (terms)
425 "Convert subcommand arguments {x} to ${x}, in order to take their values."
426 (setq terms
(cdr terms
)) ; skip command argument
428 (if (and (listp (car terms
))
429 (eq (caar terms
) 'eshell-as-subcommand
))
430 (setcar terms
(list 'eshell-convert
431 (list 'eshell-command-to-value
433 (setq terms
(cdr terms
))))
435 (defun eshell-rewrite-sexp-command (terms)
436 "Rewrite a sexp in initial position, such as '(+ 1 2)'."
437 ;; this occurs when a Lisp expression is in first position
438 (if (and (listp (car terms
))
439 (eq (caar terms
) 'eshell-command-to-value
))
442 (eshell-deftest cmd lisp-command
443 "Evaluate Lisp command"
444 (eshell-command-result-p "(+ 1 2)" "3"))
446 (eshell-deftest cmd lisp-command-args
447 "Evaluate Lisp command (ignore args)"
448 (eshell-command-result-p "(+ 1 2) 3" "3"))
450 (defun eshell-rewrite-initial-subcommand (terms)
451 "Rewrite a subcommand in initial position, such as '{+ 1 2}'."
452 (if (and (listp (car terms
))
453 (eq (caar terms
) 'eshell-as-subcommand
))
456 (eshell-deftest cmd subcommand
458 (eshell-command-result-p "{+ 1 2}" "3\n"))
460 (eshell-deftest cmd subcommand-args
461 "Run subcommand (ignore args)"
462 (eshell-command-result-p "{+ 1 2} 3" "3\n"))
464 (eshell-deftest cmd subcommand-lisp
465 "Run subcommand + Lisp form"
466 (eshell-command-result-p "{(+ 1 2)}" "3\n"))
468 (defun eshell-rewrite-named-command (terms)
469 "If no other rewriting rule transforms TERMS, assume a named command."
470 (let ((sym (if eshell-in-pipeline-p
471 'eshell-named-command
*
472 'eshell-named-command
))
476 (list sym cmd
(append (list 'list
) (cdr terms
)))
479 (eshell-deftest cmd named-command
480 "Execute named command"
481 (eshell-command-result-p "+ 1 2" "3\n"))
483 (defvar eshell-command-body
)
484 (defvar eshell-test-body
)
486 (defsubst eshell-invokify-arg
(arg &optional share-output silent
)
487 "Change ARG so it can be invoked from a structured command.
489 SHARE-OUTPUT, if non-nil, means this invocation should share the
490 current output stream, which is separately redirectable. SILENT
491 means the user and/or any redirections shouldn't see any output
492 from this command. If both SHARE-OUTPUT and SILENT are non-nil,
493 the second is ignored."
494 ;; something that begins with `eshell-convert' means that it
495 ;; intends to return a Lisp value. We want to get past this,
496 ;; but if it's not _actually_ a value interpolation -- in which
497 ;; we leave it alone. In fact, the only time we muck with it
498 ;; is in the case of a {subcommand} that has been turned into
499 ;; the interpolation, ${subcommand}, by the parser because it
500 ;; didn't know better.
502 (eq (car arg
) 'eshell-convert
)
503 (eq (car (cadr arg
)) 'eshell-command-to-value
))
506 (list 'eshell-commands
(cadr (cadr arg
))
510 (defun eshell-rewrite-for-command (terms)
511 "Rewrite a `for' command into its equivalent Eshell command form.
512 Because the implementation of `for' relies upon conditional evaluation
513 of its argument (i.e., use of a Lisp special form), it must be
514 implemented via rewriting, rather than as a function."
515 (if (and (stringp (car terms
))
516 (string= (car terms
) "for")
517 (stringp (nth 2 terms
))
518 (string= (nth 2 terms
) "in"))
519 (let ((body (car (last terms
))))
520 (setcdr (last terms
2) nil
)
522 'let
(list (list 'for-items
531 (cdr (cddr terms
)))))
532 (list 'eshell-command-body
533 (list 'quote
(list nil
)))
534 (list 'eshell-test-body
535 (list 'quote
(list nil
))))
539 'while
(list 'car
(list 'symbol-value
540 (list 'quote
'for-items
)))
544 (list (list (intern (cadr terms
))
547 (list 'quote
'for-items
)))))
548 (list 'eshell-protect
549 (eshell-invokify-arg body t
)))
550 (list 'setcar
'for-items
553 (list 'quote
'for-items
))))
554 (list 'setcdr
'for-items
557 (list 'quote
'for-items
))))))
558 (list 'eshell-close-handles
559 'eshell-last-command-status
560 (list 'list
(quote 'quote
)
561 'eshell-last-command-result
)))))))
563 (defun eshell-structure-basic-command (func names keyword test body
564 &optional else vocal-test
)
565 "With TERMS, KEYWORD, and two NAMES, structure a basic command.
566 The first of NAMES should be the positive form, and the second the
567 negative. It's not likely that users should ever need to call this
570 If VOCAL-TEST is non-nil, it means output from the test should be
571 shown, as well as output from the body."
572 ;; If the test form begins with `eshell-convert', it means
573 ;; something data-wise will be returned, and we should let
574 ;; that determine the truth of the statement.
575 (unless (eq (car test
) 'eshell-convert
)
578 (list 'eshell-exit-success-p
))))
580 ;; should we reverse the sense of the test? This depends
581 ;; on the `names' parameter. If it's the symbol nil, yes.
582 ;; Otherwise, it can be a pair of strings; if the keyword
583 ;; we're using matches the second member of that pair (a
584 ;; list), we should reverse it.
585 (if (or (eq names nil
)
587 (string= keyword
(cadr names
))))
588 (setq test
(list 'not test
)))
590 ;; finally, create the form that represents this structured
593 'let
(list (list 'eshell-command-body
594 (list 'quote
(list nil
)))
595 (list 'eshell-test-body
596 (list 'quote
(list nil
))))
597 (list func test body else
)
598 (list 'eshell-close-handles
599 'eshell-last-command-status
600 (list 'list
(quote 'quote
)
601 'eshell-last-command-result
))))
603 (defun eshell-rewrite-while-command (terms)
604 "Rewrite a `while' command into its equivalent Eshell command form.
605 Because the implementation of `while' relies upon conditional
606 evaluation of its argument (i.e., use of a Lisp special form), it
607 must be implemented via rewriting, rather than as a function."
608 (if (and (stringp (car terms
))
609 (member (car terms
) '("while" "until")))
610 (eshell-structure-basic-command
611 'while
'("while" "until") (car terms
)
612 (eshell-invokify-arg (cadr terms
) nil t
)
613 (list 'eshell-protect
614 (eshell-invokify-arg (car (last terms
)) t
)))))
616 (defun eshell-rewrite-if-command (terms)
617 "Rewrite an `if' command into its equivalent Eshell command form.
618 Because the implementation of `if' relies upon conditional
619 evaluation of its argument (i.e., use of a Lisp special form), it
620 must be implemented via rewriting, rather than as a function."
621 (if (and (stringp (car terms
))
622 (member (car terms
) '("if" "unless")))
623 (eshell-structure-basic-command
624 'if
'("if" "unless") (car terms
)
625 (eshell-invokify-arg (cadr terms
) nil t
)
626 (list 'eshell-protect
628 (if (= (length terms
) 4)
630 (car (last terms
))) t
))
631 (if (= (length terms
) 4)
632 (list 'eshell-protect
634 (car (last terms
)))) t
))))
636 (defun eshell-exit-success-p ()
637 "Return non-nil if the last command was \"successful\".
638 For a bit of Lisp code, this means a return value of non-nil.
639 For an external command, it means an exit code of 0."
641 (string-match "#<\\(Lisp object\\|function .*\\)>"
642 eshell-last-command-name
))
643 eshell-last-command-result
644 (= eshell-last-command-status
0)))
646 (defun eshell-parse-pipeline (terms &optional final-p
)
647 "Parse a pipeline from TERMS, return the appropriate Lisp forms."
649 (bigpieces (eshell-separate-commands terms
"\\(&&\\|||\\)"
655 (let ((subterms (car bp
)))
656 (let* ((pieces (eshell-separate-commands subterms
"|"))
660 (run-hook-with-args 'eshell-pre-rewrite-command-hook cmd
)
661 (setq cmd
(run-hook-with-args-until-success
662 'eshell-rewrite-command-hook cmd
))
663 (run-hook-with-args 'eshell-post-rewrite-command-hook
'cmd
)
668 (if (<= (length pieces
) 1)
670 (assert (not eshell-in-pipeline-p
))
671 (list 'eshell-execute-pipeline
672 (list 'quote pieces
))))))
674 ;; `results' might be empty; this happens in the case of
676 (setq results
(cdr results
)
677 results
(nreverse results
)
679 results
(cdr results
)
680 sep-terms
(nreverse sep-terms
))
682 (assert (car sep-terms
))
683 (setq final
(eshell-structure-basic-command
684 'if
(string= (car sep-terms
) "&&") "if"
685 (list 'eshell-protect
(car results
))
686 (list 'eshell-protect final
)
688 results
(cdr results
)
689 sep-terms
(cdr sep-terms
)))
692 (defun eshell-parse-subcommand-argument ()
693 "Parse a subcommand argument of the form '{command}'."
694 (if (and (not eshell-current-argument
)
695 (not eshell-current-quoted
)
696 (eq (char-after) ?\
{)
697 (or (= (point-max) (1+ (point)))
698 (not (eq (char-after (1+ (point))) ?\
}))))
699 (let ((end (eshell-find-delimiter ?\
{ ?\
})))
701 (throw 'eshell-incomplete ?\
{)
702 (when (eshell-arg-delimiter (1+ end
))
704 (list 'eshell-as-subcommand
705 (eshell-parse-command (cons (1+ (point)) end
)))
706 (goto-char (1+ end
))))))))
708 (defun eshell-parse-lisp-argument ()
709 "Parse a Lisp expression which is specified as an argument."
710 (if (and (not eshell-current-argument
)
711 (not eshell-current-quoted
)
712 (looking-at eshell-lisp-regexp
))
713 (let* ((here (point))
716 (read (current-buffer))
718 (throw 'eshell-incomplete ?\
()))))
719 (if (eshell-arg-delimiter)
720 (list 'eshell-command-to-value
721 (list 'eshell-lisp-command
(list 'quote obj
)))
722 (ignore (goto-char here
))))))
724 (defun eshell-separate-commands (terms separator
&optional
725 reversed last-terms-sym
)
726 "Separate TERMS using SEPARATOR.
727 If REVERSED is non-nil, the list of separated term groups will be
728 returned in reverse order. If LAST-TERMS-SYM is a symbol, its value
729 will be set to a list of all the separator operators found (or '(list
731 (let ((sub-terms (list t
))
732 (eshell-sep-terms (list t
))
735 (if (and (consp (car terms
))
736 (eq (caar terms
) 'eshell-operator
)
737 (string-match (concat "^" separator
"$")
738 (nth 1 (car terms
))))
740 (nconc eshell-sep-terms
(list (nth 1 (car terms
))))
741 (setq subchains
(cons (cdr sub-terms
) subchains
)
743 (nconc sub-terms
(list (car terms
))))
744 (setq terms
(cdr terms
)))
745 (if (> (length sub-terms
) 1)
746 (setq subchains
(cons (cdr sub-terms
) subchains
)))
750 (set last-terms-sym
(reverse (cdr eshell-sep-terms
))))
751 subchains
) ; already reversed
753 (set last-terms-sym
(cdr eshell-sep-terms
)))
754 (nreverse subchains
))))
756 ;;_* Command evaluation macros
758 ;; The structure of the following macros is very important to
759 ;; `eshell-do-eval' [Iterative evaluation]:
761 ;; @ Don't use forms that conditionally evaluate their arguments, such
762 ;; as `setq', `if', `while', `let*', etc. The only special forms
763 ;; that can be used are `let', `condition-case' and
766 ;; @ The main body of a `let' can contain only one form. Use `progn'
769 ;; @ The two `special' variables are `eshell-current-handles' and
770 ;; `eshell-current-subjob-p'. Bind them locally with a `let' if you
771 ;; need to change them. Change them directly only if your intention
772 ;; is to change the calling environment.
774 (defmacro eshell-do-subjob
(object)
775 "Evaluate a command OBJECT as a subjob.
776 We indicate that the process was run in the background by returning it
777 ensconced in a list."
778 `(let ((eshell-current-subjob-p t
))
781 (defmacro eshell-commands
(object &optional silent
)
782 "Place a valid set of handles, and context, around command OBJECT."
783 `(let ((eshell-current-handles
784 (eshell-create-handles ,(not silent
) 'append
))
785 eshell-current-subjob-p
)
788 (defmacro eshell-trap-errors
(object)
789 "Trap any errors that occur, so they are not entirely fatal.
790 Also, the variable `eshell-this-command-hook' is available for the
791 duration of OBJECT's evaluation. Note that functions should be added
792 to this hook using `nconc', and *not* `add-hook'.
794 Someday, when Scheme will become the dominant Emacs language, all of
795 this grossness will be made to disappear by using `call/cc'..."
796 `(let ((eshell-this-command-hook (list 'ignore
)))
797 (eshell-condition-case err
800 (run-hooks 'eshell-this-command-hook
))
802 (run-hooks 'eshell-this-command-hook
)
803 (eshell-errorn (error-message-string err
))
804 (eshell-close-handles 1)))))
806 (defmacro eshell-copy-handles
(object)
807 "Duplicate current I/O handles, so OBJECT works with its own copy."
808 `(let ((eshell-current-handles
809 (eshell-create-handles
810 (car (aref eshell-current-handles
811 eshell-output-handle
)) nil
812 (car (aref eshell-current-handles
813 eshell-error-handle
)) nil
)))
816 (defmacro eshell-protect
(object)
817 "Protect I/O handles, so they aren't get closed after eval'ing OBJECT."
819 (eshell-protect-handles eshell-current-handles
)
822 (defmacro eshell-do-pipelines
(pipeline &optional notfirst
)
823 "Execute the commands in PIPELINE, connecting each to one another.
824 This macro calls itself recursively, with NOTFIRST non-nil."
825 (when (setq pipeline
(cadr pipeline
))
826 `(eshell-copy-handles
828 ,(when (cdr pipeline
)
832 (eshell-do-pipelines (quote ,(cdr pipeline
)) t
))
833 (eshell-set-output-handle ,eshell-output-handle
835 (eshell-set-output-handle ,eshell-error-handle
837 (set 'tailproc
(or tailproc nextproc
)))))
838 ,(let ((head (car pipeline
)))
839 (if (memq (car head
) '(let progn
))
840 (setq head
(car (last head
))))
841 (when (memq (car head
) eshell-deferrable-commands
)
845 (concat (symbol-name (car head
)) "*"))))))
846 ;; First and last elements in a pipeline may need special treatment.
847 ;; (Currently only eshell-ls-files uses 'last.)
848 ;; Affects process-connection-type in eshell-gather-process-output.
849 (let ((eshell-in-pipeline-p
850 ,(cond ((not notfirst
) (quote 'first
))
855 (defmacro eshell-do-pipelines-synchronously
(pipeline)
856 "Execute the commands in PIPELINE in sequence synchronously.
857 Output of each command is passed as input to the next one in the pipeline.
858 This is used on systems where `start-process' is not supported."
859 (when (setq pipeline
(cadr pipeline
))
862 ,(when (cdr pipeline
)
863 `(let (output-marker)
865 (set 'output-marker
,(point-marker))
866 (eshell-set-output-handle ,eshell-output-handle
867 'append output-marker
)
868 (eshell-set-output-handle ,eshell-error-handle
869 'append output-marker
))))
870 ,(let ((head (car pipeline
)))
871 (if (memq (car head
) '(let progn
))
872 (setq head
(car (last head
))))
873 ;;; FIXME: is deferrable significant here?
874 (when (memq (car head
) eshell-deferrable-commands
)
878 (concat (symbol-name (car head
)) "*"))))))
879 ;; The last process in the pipe should get its handles
880 ;; redirected as we found them before running the pipe.
881 ,(if (null (cdr pipeline
))
883 (set 'eshell-current-handles tail-handles
)
884 (set 'eshell-in-pipeline-p nil
)))
885 (set 'result
,(car pipeline
))
886 ;; tailproc gets the result of the last successful process in
888 (set 'tailproc
(or result tailproc
))
890 `(eshell-do-pipelines-synchronously (quote ,(cdr pipeline
))))
893 (defalias 'eshell-process-identity
'identity
)
895 (defmacro eshell-execute-pipeline
(pipeline)
896 "Execute the commands in PIPELINE, connecting each to one another."
897 `(let ((eshell-in-pipeline-p t
) tailproc
)
899 ,(if (fboundp 'start-process
)
900 `(eshell-do-pipelines ,pipeline
)
901 `(let ((tail-handles (eshell-create-handles
902 (car (aref eshell-current-handles
903 ,eshell-output-handle
)) nil
904 (car (aref eshell-current-handles
905 ,eshell-error-handle
)) nil
)))
906 (eshell-do-pipelines-synchronously ,pipeline
)))
907 (eshell-process-identity tailproc
))))
909 (defmacro eshell-as-subcommand
(command)
910 "Execute COMMAND using a temp buffer.
911 This is used so that certain Lisp commands, such as `cd', when
912 executed in a subshell, do not disturb the environment of the main
914 `(let ,eshell-subcommand-bindings
917 (defmacro eshell-do-command-to-value
(object)
918 "Run a subcommand prepared by `eshell-command-to-value'.
919 This avoids the need to use `let*'."
920 `(let ((eshell-current-handles
921 (eshell-create-handles value
'overwrite
)))
924 (symbol-value value
))))
926 (defmacro eshell-command-to-value
(object)
927 "Run OBJECT synchronously, returning its result as a string.
928 Returns a string comprising the output from the command."
929 `(let ((value (make-symbol "eshell-temp")))
930 (eshell-do-command-to-value ,object
)))
932 ;;;_* Iterative evaluation
934 ;; Eshell runs all of its external commands asynchronously, so that
935 ;; Emacs is not blocked while the operation is being performed.
936 ;; However, this introduces certain synchronization difficulties,
937 ;; since the Lisp code, once it returns, will not "go back" to finish
938 ;; executing the commands which haven't yet been started.
940 ;; What Eshell does to work around this problem (basically, the lack
941 ;; of threads in Lisp), is that it evaluates the command sequence
942 ;; iteratively. Whenever an asynchronous process is begun, evaluation
943 ;; terminates and control is given back to Emacs. When that process
944 ;; finishes, it will resume the evaluation using the remainder of the
947 (defun eshell/eshell-debug
(&rest args
)
948 "A command for toggling certain debug variables."
952 (if eshell-handle-errors
953 (eshell-print "errors\n"))
954 (if eshell-debug-command
955 (eshell-print "commands\n")))
956 ((or (string= (car args
) "-h")
957 (string= (car args
) "--help"))
958 (eshell-print "usage: eshell-debug [kinds]
960 This command is used to aid in debugging problems related to Eshell
961 itself. It is not useful for anything else. The recognized `kinds'
964 errors stops Eshell from trapping errors
965 commands shows command execution progress in `*eshell last cmd*'
970 ((string= (car args
) "errors")
971 (setq eshell-handle-errors
(not eshell-handle-errors
)))
972 ((string= (car args
) "commands")
973 (setq eshell-debug-command
(not eshell-debug-command
))))
974 (setq args
(cdr args
)))))))
976 (defun pcomplete/eshell-mode
/eshell-debug
()
977 "Completion for the `debug' command."
978 (while (pcomplete-here '("errors" "commands"))))
980 (defun eshell-invoke-directly (command input
)
981 (let ((base (cadr (nth 2 (nth 2 (cadr command
))))) name
)
982 (if (and (eq (car base
) 'eshell-trap-errors
)
983 (eq (car (cadr base
)) 'eshell-named-command
))
984 (setq name
(cadr (cadr base
))))
985 (and name
(stringp name
)
986 (not (member name eshell-complex-commands
))
989 (eshell-for pred eshell-complex-commands
990 (if (and (functionp pred
)
992 (throw 'simple nil
)))
994 (fboundp (intern-soft (concat "eshell/" name
))))))
996 (defun eshell-eval-command (command &optional input
)
997 "Evaluate the given COMMAND iteratively."
998 (if eshell-current-command
999 ;; we can just stick the new command at the end of the current
1000 ;; one, and everything will happen as it should
1001 (setcdr (last (cdr eshell-current-command
))
1002 (list (list 'let
'((here (and (eobp) (point))))
1004 (list 'insert-and-inherit
1005 (concat input
"\n")))
1007 (eshell-update-markers here
))
1008 (list 'eshell-do-eval
1009 (list 'quote command
)))))
1010 (and eshell-debug-command
1011 (with-current-buffer (get-buffer-create "*eshell last cmd*")
1013 (insert "command: \"" input
"\"\n")))
1014 (setq eshell-current-command command
)
1015 (let ((delim (catch 'eshell-incomplete
1016 (eshell-resume-eval))))
1017 ;; On systems that don't support async subprocesses, eshell-resume
1018 ;; can return t. Don't treat that as an error.
1020 (setq delim
(car delim
)))
1021 (if (and delim
(not (eq delim t
)))
1022 (error "Unmatched delimiter: %c" delim
)))))
1024 (defun eshell-resume-command (proc status
)
1025 "Resume the current command when a process ends."
1027 (unless (or (not (stringp status
))
1028 (string= "stopped" status
)
1029 (string-match eshell-reset-signals status
))
1030 (if (eq proc
(eshell-interactive-process))
1031 (eshell-resume-eval)))))
1033 (defun eshell-resume-eval ()
1034 "Destructively evaluate a form which may need to be deferred."
1035 (eshell-condition-case err
1037 (setq eshell-last-async-proc nil
)
1038 (when eshell-current-command
1040 (proc (catch 'eshell-defer
1044 eshell-current-command
))))))
1045 (if (eshell-processp proc
)
1046 (ignore (setq eshell-last-async-proc proc
))
1049 (error (error-message-string err
)))))
1051 (defmacro eshell-manipulate
(tag &rest commands
)
1052 "Manipulate a COMMAND form, with TAG as a debug identifier."
1053 ;; Check `bound'ness since at compile time the code until here has not
1055 (if (not (and (boundp 'eshell-debug-command
) eshell-debug-command
))
1058 (eshell-debug-command ,(eval tag
) form
)
1060 (eshell-debug-command ,(concat "done " (eval tag
)) form
))))
1062 (put 'eshell-manipulate
'lisp-indent-function
1)
1064 ;; eshell-lookup-function, eshell-functionp, and eshell-macrop taken
1067 (defsubst eshell-lookup-function
(object)
1068 "Return the ultimate function definition of OBJECT."
1069 (while (and (symbolp object
) (fboundp object
))
1070 (setq object
(symbol-function object
)))
1073 (defconst function-p-func
1074 (if (fboundp 'compiled-function-p
)
1075 'compiled-function-p
1076 'byte-code-function-p
))
1078 (defsubst eshell-functionp
(object)
1079 "Returns the function named by OBJECT, or nil if it is not a function."
1080 (setq object
(eshell-lookup-function object
))
1081 (if (or (subrp object
)
1082 (funcall function-p-func object
)
1084 (eq (car object
) 'lambda
)
1085 (listp (car (cdr object
)))))
1088 (defsubst eshell-macrop
(object)
1089 "Return t if OBJECT is a macro or nil otherwise."
1090 (setq object
(eshell-lookup-function object
))
1091 (if (and (listp object
)
1092 (eq 'macro
(car object
))
1093 (eshell-functionp (cdr object
)))
1096 (defun eshell-do-eval (form &optional synchronous-p
)
1097 "Evaluate form, simplifying it as we go.
1098 Unless SYNCHRONOUS-P is non-nil, throws `eshell-defer' if it needs to
1099 be finished later after the completion of an asynchronous subprocess."
1102 (list 'quote
(eval form
)))
1103 ((memq (car form
) '(quote function
))
1106 ;; skip past the call to `eshell-do-eval'
1107 (when (eq (car form
) 'eshell-do-eval
)
1108 (setq form
(cadr (cadr form
))))
1109 ;; expand any macros directly into the form. This is done so that
1110 ;; we can modify any `let' forms to evaluate only once.
1111 (if (eshell-macrop (car form
))
1112 (let ((exp (eshell-copy-tree (macroexpand form
))))
1113 (eshell-manipulate (format "expanding macro `%s'"
1114 (symbol-name (car form
)))
1115 (setcar form
(car exp
))
1116 (setcdr form
(cdr exp
)))))
1117 (let ((args (cdr form
)))
1119 ((eq (car form
) 'while
)
1120 ;; `eshell-copy-tree' is needed here so that the test argument
1121 ;; doesn't get modified and thus always yield the same result.
1122 (when (car eshell-command-body
)
1123 (assert (not synchronous-p
))
1124 (eshell-do-eval (car eshell-command-body
))
1125 (setcar eshell-command-body nil
)
1126 (setcar eshell-test-body nil
))
1127 (unless (car eshell-test-body
)
1128 (setcar eshell-test-body
(eshell-copy-tree (car args
))))
1129 (while (cadr (eshell-do-eval (car eshell-test-body
)))
1130 (setcar eshell-command-body
(eshell-copy-tree (cadr args
)))
1131 (eshell-do-eval (car eshell-command-body
) synchronous-p
)
1132 (setcar eshell-command-body nil
)
1133 (setcar eshell-test-body
(eshell-copy-tree (car args
))))
1134 (setcar eshell-command-body nil
))
1135 ((eq (car form
) 'if
)
1136 ;; `eshell-copy-tree' is needed here so that the test argument
1137 ;; doesn't get modified and thus always yield the same result.
1138 (if (car eshell-command-body
)
1140 (assert (not synchronous-p
))
1141 (eshell-do-eval (car eshell-command-body
)))
1142 (unless (car eshell-test-body
)
1143 (setcar eshell-test-body
(eshell-copy-tree (car args
))))
1144 (if (cadr (eshell-do-eval (car eshell-test-body
)))
1145 (setcar eshell-command-body
(eshell-copy-tree (cadr args
)))
1146 (setcar eshell-command-body
(eshell-copy-tree (car (cddr args
)))))
1147 (eshell-do-eval (car eshell-command-body
) synchronous-p
))
1148 (setcar eshell-command-body nil
)
1149 (setcar eshell-test-body nil
))
1150 ((eq (car form
) 'setcar
)
1151 (setcar (cdr args
) (eshell-do-eval (cadr args
) synchronous-p
))
1153 ((eq (car form
) 'setcdr
)
1154 (setcar (cdr args
) (eshell-do-eval (cadr args
) synchronous-p
))
1156 ((memq (car form
) '(let catch condition-case unwind-protect
))
1157 ;; `let', `condition-case' and `unwind-protect' have to be
1158 ;; handled specially, because we only want to call
1159 ;; `eshell-do-eval' on their first form.
1161 ;; NOTE: This requires obedience by all forms which this
1162 ;; function might encounter, that they do not contain
1163 ;; other special forms.
1164 (if (and (eq (car form
) 'let
)
1165 (not (eq (car (cadr args
)) 'eshell-do-eval
)))
1166 (eshell-manipulate "evaluating let args"
1167 (eshell-for letarg
(car args
)
1168 (if (and (listp letarg
)
1169 (not (eq (cadr letarg
) 'quote
)))
1171 (list (eshell-do-eval
1172 (cadr letarg
) synchronous-p
)))))))
1173 (unless (eq (car form
) 'unwind-protect
)
1174 (setq args
(cdr args
)))
1175 (unless (eq (caar args
) 'eshell-do-eval
)
1176 (eshell-manipulate "handling special form"
1177 (setcar args
(list 'eshell-do-eval
1178 (list 'quote
(car args
))
1182 (if (and args
(not (memq (car form
) '(run-hooks))))
1184 (format "evaluating arguments to `%s'"
1185 (symbol-name (car form
)))
1187 (setcar args
(eshell-do-eval (car args
) synchronous-p
))
1188 (setq args
(cdr args
)))))
1190 ((eq (car form
) 'progn
)
1192 ((eq (car form
) 'prog1
)
1195 ;; If a command desire to replace its execution form with
1196 ;; another command form, all it needs to do is throw the new
1197 ;; form using the exception tag `eshell-replace-command'.
1198 ;; For example, let's say that the form currently being
1201 ;; (eshell-named-command "hello")
1203 ;; Now, let's assume the 'hello' command is an Eshell alias,
1204 ;; the definition of which yields the command:
1206 ;; (eshell-named-command "echo" (list "Hello" "world"))
1208 ;; What the alias code would like to do is simply substitute
1209 ;; the alias form for the original form. To accomplish
1210 ;; this, all it needs to do is to throw the substitution
1211 ;; form with the `eshell-replace-command' tag, and the form
1212 ;; will be replaced within the current command, and
1213 ;; execution will then resume (iteratively) as before.
1214 ;; Thus, aliases can even contain references to asynchronous
1215 ;; sub-commands, and things will still work out as they
1217 (let (result new-form
)
1219 (catch 'eshell-replace-command
1221 (setq result
(eval form
)))))
1223 (eshell-manipulate "substituting replacement form"
1224 (setcar form
(car new-form
))
1225 (setcdr form
(cdr new-form
)))
1226 (eshell-do-eval form synchronous-p
))
1227 (if (and (memq (car form
) eshell-deferrable-commands
)
1228 (not eshell-current-subjob-p
)
1230 (eshell-processp result
))
1232 (eshell/wait result
)
1233 (eshell-manipulate "inserting ignore form"
1234 (setcar form
'ignore
)
1236 (throw 'eshell-defer result
))
1237 (list 'quote result
))))))))))))
1239 ;; command invocation
1241 (defun eshell/which
(command &rest names
)
1242 "Identify the COMMAND, and where it is located."
1243 (eshell-for name
(cons command names
)
1244 (let (program alias direct
)
1245 (if (eq (aref name
0) eshell-explicit-command-char
)
1246 (setq name
(substring name
1)
1248 (if (and (not direct
)
1249 (eshell-using-module 'eshell-alias
)
1251 (funcall (symbol-function 'eshell-lookup-alias
)
1254 (concat name
" is an alias, defined as \""
1255 (cadr alias
) "\"")))
1257 (setq program
(eshell-search-path name
))
1258 (let* ((esym (eshell-find-alias-function name
))
1259 (sym (or esym
(intern-soft name
))))
1260 (if (and (or esym
(and sym
(fboundp sym
)))
1261 (or eshell-prefer-lisp-functions
(not direct
)))
1262 (let ((desc (let ((inhibit-redisplay t
))
1263 (save-window-excursion
1265 (describe-function sym
)
1267 (setq desc
(if desc
(substring desc
0
1268 (1- (or (string-match "\n" desc
)
1270 ;; This should not happen.
1271 (format "%s is defined, \
1272 but no documentation was found" name
)))
1273 (if (buffer-live-p (get-buffer "*Help*"))
1274 (kill-buffer "*Help*"))
1275 (setq program
(or desc name
))))))
1277 (eshell-error (format "which: no %s in (%s)\n"
1278 name
(getenv "PATH")))
1279 (eshell-printn program
)))))
1281 (put 'eshell
/which
'eshell-no-numeric-conversions t
)
1283 (defun eshell-named-command (command &optional args
)
1284 "Insert output from a plain COMMAND, using ARGS.
1285 COMMAND may result in an alias being executed, or a plain command."
1286 (setq eshell-last-arguments args
1287 eshell-last-command-name
(eshell-stringify command
))
1288 (run-hook-with-args 'eshell-prepare-command-hook
)
1289 (assert (stringp eshell-last-command-name
))
1290 (if eshell-last-command-name
1291 (or (run-hook-with-args-until-success
1292 'eshell-named-command-hook eshell-last-command-name
1293 eshell-last-arguments
)
1294 (eshell-plain-command eshell-last-command-name
1295 eshell-last-arguments
))))
1297 (defalias 'eshell-named-command
* 'eshell-named-command
)
1299 (defun eshell-find-alias-function (name)
1300 "Check whether a function called `eshell/NAME' exists."
1301 (let* ((sym (intern-soft (concat "eshell/" name
)))
1302 (file (symbol-file sym
'defun
)))
1303 ;; If the function exists, but is defined in an eshell module
1304 ;; that's not currently enabled, don't report it as found
1306 (string-match "\\(em\\|esh\\)-\\(.*\\)\\(\\.el\\)?\\'" file
))
1308 (intern (file-name-sans-extension
1309 (file-name-nondirectory
1310 (concat "eshell-" (match-string 2 file
)))))))
1311 (if (and (functionp sym
)
1312 (or (null module-sym
)
1313 (eshell-using-module module-sym
)
1314 (memq module-sym
(eshell-subgroups 'eshell
))))
1316 ;; Otherwise, if it's bound, return it.
1320 (defun eshell-plain-command (command args
)
1321 "Insert output from a plain COMMAND, using ARGS.
1322 COMMAND may result in either a Lisp function being executed by name,
1323 or an external command."
1324 (let* ((esym (eshell-find-alias-function command
))
1325 (sym (or esym
(intern-soft command
))))
1326 (if (and sym
(fboundp sym
)
1327 (or esym eshell-prefer-lisp-functions
1328 (not (eshell-search-path command
))))
1329 (eshell-lisp-command sym args
)
1330 (eshell-external-command command args
))))
1332 (defun eshell-exec-lisp (printer errprint func-or-form args form-p
)
1333 "Execute a lisp FUNC-OR-FORM, maybe passing ARGS.
1334 PRINTER and ERRPRINT are functions to use for printing regular
1335 messages, and errors. FORM-P should be non-nil if FUNC-OR-FORM
1336 represent a lisp form; ARGS will be ignored in that case."
1338 (eshell-condition-case err
1341 (save-current-buffer
1344 (apply func-or-form args
))))
1345 (and result
(funcall printer result
))
1348 (let ((msg (error-message-string err
)))
1349 (if (and (not form-p
)
1350 (string-match "^Wrong number of arguments" msg
)
1351 (fboundp 'eldoc-get-fnsym-args-string
))
1352 (let ((func-doc (eldoc-get-fnsym-args-string func-or-form
)))
1353 (setq msg
(format "usage: %s" func-doc
))))
1354 (funcall errprint msg
))
1357 (defsubst eshell-apply
* (printer errprint func args
)
1358 "Call FUNC, with ARGS, trapping errors and return them as output.
1359 PRINTER and ERRPRINT are functions to use for printing regular
1360 messages, and errors."
1361 (eshell-exec-lisp printer errprint func args nil
))
1363 (defsubst eshell-funcall
* (printer errprint func
&rest args
)
1364 "Call FUNC, with ARGS, trapping errors and return them as output."
1365 (eshell-apply* printer errprint func args
))
1367 (defsubst eshell-eval
* (printer errprint form
)
1368 "Evaluate FORM, trapping errors and returning them."
1369 (eshell-exec-lisp printer errprint form nil t
))
1371 (defsubst eshell-apply
(func args
)
1372 "Call FUNC, with ARGS, trapping errors and return them as output.
1373 PRINTER and ERRPRINT are functions to use for printing regular
1374 messages, and errors."
1375 (eshell-apply* 'eshell-print
'eshell-error func args
))
1377 (defsubst eshell-funcall
(func &rest args
)
1378 "Call FUNC, with ARGS, trapping errors and return them as output."
1379 (eshell-apply func args
))
1381 (defsubst eshell-eval
(form)
1382 "Evaluate FORM, trapping errors and returning them."
1383 (eshell-eval* 'eshell-print
'eshell-error form
))
1385 (defsubst eshell-applyn
(func args
)
1386 "Call FUNC, with ARGS, trapping errors and return them as output.
1387 PRINTER and ERRPRINT are functions to use for printing regular
1388 messages, and errors."
1389 (eshell-apply* 'eshell-printn
'eshell-errorn func args
))
1391 (defsubst eshell-funcalln
(func &rest args
)
1392 "Call FUNC, with ARGS, trapping errors and return them as output."
1393 (eshell-applyn func args
))
1395 (defsubst eshell-evaln
(form)
1396 "Evaluate FORM, trapping errors and returning them."
1397 (eshell-eval* 'eshell-printn
'eshell-errorn form
))
1399 (defun eshell-lisp-command (object &optional args
)
1400 "Insert Lisp OBJECT, using ARGS if a function."
1401 (catch 'eshell-external
; deferred to an external command
1402 (let* ((eshell-ensure-newline-p (eshell-interactive-output-p))
1404 (if (functionp object
)
1406 (setq eshell-last-arguments args
1407 eshell-last-command-name
1408 (concat "#<function " (symbol-name object
) ">"))
1409 ;; if any of the arguments are flagged as numbers
1410 ;; waiting for conversion, convert them now
1411 (unless (get object
'eshell-no-numeric-conversions
)
1413 (let ((arg (car args
)))
1414 (if (and (stringp arg
)
1416 (not (text-property-not-all
1417 0 (length arg
) 'number t arg
)))
1418 (setcar args
(string-to-number arg
))))
1419 (setq args
(cdr args
))))
1420 (eshell-apply object eshell-last-arguments
))
1421 (setq eshell-last-arguments args
1422 eshell-last-command-name
"#<Lisp object>")
1423 (eshell-eval object
))))
1424 (if (and eshell-ensure-newline-p
1426 (goto-char eshell-last-output-end
)
1428 (eshell-print "\n"))
1429 (eshell-close-handles 0 (list 'quote result
)))))
1431 (defalias 'eshell-lisp-command
* 'eshell-lisp-command
)
1435 ;; arch-tag: 8e4f3867-a0c5-441f-96ba-ddd142d94366
1436 ;;; esh-cmd.el ends here