diff options
| author | Eli Zaretskii | 2016-01-16 15:30:47 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-01-16 15:30:47 +0200 |
| commit | e48f6dd3f79229d1dca96a691069eba45e90480c (patch) | |
| tree | 966ede3f66f8626081b1d733ea039f37466e89af /lisp | |
| parent | 6e79b6379fa33aef914211b280d0ee0b08d0339a (diff) | |
| download | emacs-e48f6dd3f79229d1dca96a691069eba45e90480c.tar.gz emacs-e48f6dd3f79229d1dca96a691069eba45e90480c.zip | |
Document 'define-inline'
* doc/lispref/functions.texi (Defining Functions): Document
'define-inline' and related macros.
* lisp/emacs-lisp/inline.el (inline-letevals): Doc fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/emacs-lisp/inline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el index 56780fbb05a..058c56c3b49 100644 --- a/lisp/emacs-lisp/inline.el +++ b/lisp/emacs-lisp/inline.el | |||
| @@ -102,7 +102,7 @@ VARS should be a list of elements of the form (VAR EXP) or just VAR, in case | |||
| 102 | EXP is equal to VAR. The result is to evaluate EXP and bind the result to VAR. | 102 | EXP is equal to VAR. The result is to evaluate EXP and bind the result to VAR. |
| 103 | 103 | ||
| 104 | The tail of VARS can be either nil or a symbol VAR which should hold a list | 104 | The tail of VARS can be either nil or a symbol VAR which should hold a list |
| 105 | of arguments,in which case each argument is evaluated and the resulting | 105 | of arguments, in which case each argument is evaluated and the resulting |
| 106 | new list is re-bound to VAR. | 106 | new list is re-bound to VAR. |
| 107 | 107 | ||
| 108 | After VARS is handled, BODY is evaluated in the new environment." | 108 | After VARS is handled, BODY is evaluated in the new environment." |