diff options
| author | John Wiegley | 2001-05-10 03:52:13 +0000 |
|---|---|---|
| committer | John Wiegley | 2001-05-10 03:52:13 +0000 |
| commit | ea7974a656b210a7befdad10ad7f9fa3a00b0120 (patch) | |
| tree | 328e3a4c77c12514b934cc7a1d0e23581e523fa0 /lisp/eshell | |
| parent | 90d94608c692f706e8ed452fa6fef93b3c4f0676 (diff) | |
| download | emacs-ea7974a656b210a7befdad10ad7f9fa3a00b0120.tar.gz emacs-ea7974a656b210a7befdad10ad7f9fa3a00b0120.zip | |
Fixed reference to free variable.
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 ef64fa95867..79df4d5ffba 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el | |||
| @@ -1401,7 +1401,7 @@ messages, and errors." | |||
| 1401 | (if (and (stringp arg) | 1401 | (if (and (stringp arg) |
| 1402 | (> (length arg) 0) | 1402 | (> (length arg) 0) |
| 1403 | (get-text-property 0 'number arg)) | 1403 | (get-text-property 0 'number arg)) |
| 1404 | (setcar a (string-to-number arg)))) | 1404 | (setcar args (string-to-number arg)))) |
| 1405 | (setq args (cdr args)))) | 1405 | (setq args (cdr args)))) |
| 1406 | (eshell-apply object eshell-last-arguments)) | 1406 | (eshell-apply object eshell-last-arguments)) |
| 1407 | (setq eshell-last-arguments args | 1407 | (setq eshell-last-arguments args |