diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:37:13 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-07 02:37:13 +0000 |
commit | 1a32899de36b245916e553a7fda8ab37fea6fc1e (patch) | |
tree | f0f4e00a422c4f139002f8e9d36c2bb063fe2e5d /lisp/eshell/esh-cmd.el | |
parent | 966bd7bd3ef9fe8f803055c2a1b41cf5dd1e603a (diff) | |
download | emacs-1a32899de36b245916e553a7fda8ab37fea6fc1e.tar.gz |
Remove unnecessary eval-when-compiles and eval-and-compiles.
Diffstat (limited to 'lisp/eshell/esh-cmd.el')
-rw-r--r-- | lisp/eshell/esh-cmd.el | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index c28ba970c41..1c75eca28ee 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el @@ -1,7 +1,7 @@ ;;; esh-cmd.el --- command invocation -;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008 Free Software Foundation, Inc. ;; Author: John Wiegley <johnw@gnu.org> @@ -477,9 +477,8 @@ hooks should be run before and after the command." "Execute named command" (eshell-command-result-p "+ 1 2" "3\n")) -(eval-when-compile - (defvar eshell-command-body) - (defvar eshell-test-body)) +(defvar eshell-command-body) +(defvar eshell-test-body) (defsubst eshell-invokify-arg (arg &optional share-output silent) "Change ARG so it can be invoked from a structured command. |