diff options
| author | Gerd Moellmann | 2000-06-23 05:23:39 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-06-23 05:23:39 +0000 |
| commit | 022499fab948938bb763c2a33a8c5ba0c5969fcd (patch) | |
| tree | 66e65e42dce201d981a3ad160879c41fb5437735 | |
| parent | c47e930233108363ae31e51a70a5011758755275 (diff) | |
| download | emacs-022499fab948938bb763c2a33a8c5ba0c5969fcd.tar.gz emacs-022499fab948938bb763c2a33a8c5ba0c5969fcd.zip | |
(eshell-rewrite-for-command): Use cdr and
cddr instead of cdddr.
| -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." | |||
| 499 | (if (listp elem) | 499 | (if (listp elem) |
| 500 | elem | 500 | elem |
| 501 | (list 'list elem)))) | 501 | (list 'list elem)))) |
| 502 | (cdddr terms)))) | 502 | (cdr (cddr terms))))) |
| 503 | (list 'eshell-command-body | 503 | (list 'eshell-command-body |
| 504 | (list 'quote (list nil))) | 504 | (list 'quote (list nil))) |
| 505 | (list 'eshell-test-body | 505 | (list 'eshell-test-body |