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/em-glob.el | |
parent | 966bd7bd3ef9fe8f803055c2a1b41cf5dd1e603a (diff) | |
download | emacs-1a32899de36b245916e553a7fda8ab37fea6fc1e.tar.gz |
Remove unnecessary eval-when-compiles and eval-and-compiles.
Diffstat (limited to 'lisp/eshell/em-glob.el')
-rw-r--r-- | lisp/eshell/em-glob.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index 319e2b4057d..6de0e89121e 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -260,9 +260,8 @@ the form: (error "No matches found: %s" glob) glob)))) -(eval-when-compile - (defvar matches) - (defvar message-shown)) +(defvar matches) +(defvar message-shown) ;; FIXME does this really need to abuse matches, message-shown? (defun eshell-glob-entries (path globs &optional recurse-p) |