diff options
| author | Juanma Barranquero | 2007-01-29 16:13:22 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-01-29 16:13:22 +0000 |
| commit | 31096fe898f8cb2194d771fdd4c96ca7a02e8d52 (patch) | |
| tree | 4a4f65c28e754dbd9f27bdfd89cd221020e6c9a7 | |
| parent | 1b1200a12034f650d8d9ea71eb5dc58a405e6455 (diff) | |
| download | emacs-31096fe898f8cb2194d771fdd4c96ca7a02e8d52.tar.gz emacs-31096fe898f8cb2194d771fdd4c96ca7a02e8d52.zip | |
(eshell-rewrite-for-command): Fix typo in docstring.
| -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 cc818650579..2b48bad0166 100644 --- a/lisp/eshell/esh-cmd.el +++ b/lisp/eshell/esh-cmd.el | |||
| @@ -497,7 +497,7 @@ the second is ignored." | |||
| 497 | (defun eshell-rewrite-for-command (terms) | 497 | (defun eshell-rewrite-for-command (terms) |
| 498 | "Rewrite a `for' command into its equivalent Eshell command form. | 498 | "Rewrite a `for' command into its equivalent Eshell command form. |
| 499 | Because the implementation of `for' relies upon conditional evaluation | 499 | Because the implementation of `for' relies upon conditional evaluation |
| 500 | of its argumbent (i.e., use of a Lisp special form), it must be | 500 | of its argument (i.e., use of a Lisp special form), it must be |
| 501 | implemented via rewriting, rather than as a function." | 501 | implemented via rewriting, rather than as a function." |
| 502 | (if (and (stringp (car terms)) | 502 | (if (and (stringp (car terms)) |
| 503 | (string= (car terms) "for") | 503 | (string= (car terms) "for") |