summaryrefslogtreecommitdiff
path: root/lisp/eshell/esh-opt.el
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2007-08-26 01:52:30 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2007-08-26 01:52:30 +0000
commit0d182a34a175b04f05f86a1494cd4cd447777786 (patch)
tree96a79a8970b09e3d83bbf7526418fb20387a8236 /lisp/eshell/esh-opt.el
parenta549ce70542360af098cc94d191cc01879bf3a8e (diff)
downloademacs-0d182a34a175b04f05f86a1494cd4cd447777786.tar.gz
(eshell-eval-using-options): Add debug declaration.
Diffstat (limited to 'lisp/eshell/esh-opt.el')
-rw-r--r--lisp/eshell/esh-opt.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el
index 41e12e70b43..121f568a9c4 100644
--- a/lisp/eshell/esh-opt.el
+++ b/lisp/eshell/esh-opt.el
@@ -58,6 +58,7 @@ BODY-FORMS. If instead an external command is run, the tag
Lastly, any remaining arguments will be available in a locally
interned variable `args' (created using a `let' form)."
+ (declare (debug (form form sexp body)))
`(let ((temp-args
,(if (memq ':preserve-args (cadr options))
macro-args
@@ -101,7 +102,7 @@ This code doesn't really need to be macro expanded everywhere."
nil))
(error "%s" usage-msg))))
(throw 'eshell-external
- (eshell-external-command ext-command args))
+ (eshell-external-command ext-command args))
last-value))
(defun eshell-show-usage (name options)