diff options
| author | Lars Ingebrigtsen | 2019-10-09 18:42:36 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-10-09 18:42:41 +0200 |
| commit | fe2e29d29b50b378545632fb730209de6e5532d5 (patch) | |
| tree | d6636dfaba7efb6b0a74f09c0358ec1f6f950565 | |
| parent | 600bcde608479fc454e4794add84905d6337d3fa (diff) | |
| download | emacs-fe2e29d29b50b378545632fb730209de6e5532d5.tar.gz emacs-fe2e29d29b50b378545632fb730209de6e5532d5.zip | |
Tweak letrec documentation
* doc/lispref/variables.texi (Local Variables): Compare letrec to
let* instead of let.
| -rw-r--r-- | doc/lispref/variables.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 8d6cc293800..02e156396db 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi | |||
| @@ -268,7 +268,7 @@ Compare the following example with the example above for @code{let}. | |||
| 268 | @end defspec | 268 | @end defspec |
| 269 | 269 | ||
| 270 | @defspec letrec (bindings@dots{}) forms@dots{} | 270 | @defspec letrec (bindings@dots{}) forms@dots{} |
| 271 | This special form is like @code{let}, but all the variables are bound | 271 | This special form is like @code{let*}, but all the variables are bound |
| 272 | before any of the local values are computed. The values are then | 272 | before any of the local values are computed. The values are then |
| 273 | assigned to the locally bound variables. This is only useful when | 273 | assigned to the locally bound variables. This is only useful when |
| 274 | lexical binding is in effect, and you want to create closures that | 274 | lexical binding is in effect, and you want to create closures that |