diff options
| author | Andrea Corallo | 2020-10-23 20:08:58 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-10-23 20:08:58 +0100 |
| commit | 99e7cc0da652bf0f19f691d5de3b3ce7c15e8c39 (patch) | |
| tree | e7c4921579cfeac379b649f27c2da78fed8aae48 /src/eval.c | |
| parent | 3be93390fb6680d1e0c3256af72c86635a9eb327 (diff) | |
| parent | 46f5d2867cf73a845d582eeb8929ae51b78eae55 (diff) | |
| download | emacs-99e7cc0da652bf0f19f691d5de3b3ce7c15e8c39.tar.gz emacs-99e7cc0da652bf0f19f691d5de3b3ce7c15e8c39.zip | |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 84631f4f942..09e12bd3752 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -553,7 +553,10 @@ usage: (quote ARG) */) | |||
| 553 | DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, | 553 | DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, |
| 554 | doc: /* Like `quote', but preferred for objects which are functions. | 554 | doc: /* Like `quote', but preferred for objects which are functions. |
| 555 | In byte compilation, `function' causes its argument to be handled by | 555 | In byte compilation, `function' causes its argument to be handled by |
| 556 | the byte compiler. `quote' cannot do that. | 556 | the byte compiler. Similarly, when expanding macros and expressions, |
| 557 | ARG can be examined and possibly expanded. If `quote' is used | ||
| 558 | instead, this doesn't happen. | ||
| 559 | |||
| 557 | usage: (function ARG) */) | 560 | usage: (function ARG) */) |
| 558 | (Lisp_Object args) | 561 | (Lisp_Object args) |
| 559 | { | 562 | { |