diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-06-23 05:23:39 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-06-23 05:23:39 +0000 |
commit | 022499fab948938bb763c2a33a8c5ba0c5969fcd (patch) | |
tree | 66e65e42dce201d981a3ad160879c41fb5437735 /lisp/eshell | |
parent | c47e930233108363ae31e51a70a5011758755275 (diff) | |
download | emacs-022499fab948938bb763c2a33a8c5ba0c5969fcd.tar.gz |
(eshell-rewrite-for-command): Use cdr and
cddr instead of cdddr.
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-cmd.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el index b75a371951a..2ced3242c4f 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el @@ -499,7 +499,7 @@ implemented via rewriting, rather than as a function." (if (listp elem) elem (list 'list elem)))) - (cdddr terms)))) + (cdr (cddr terms))))) (list 'eshell-command-body (list 'quote (list nil))) (list 'eshell-test-body |