aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorAndrea Corallo2020-10-23 20:08:58 +0100
committerAndrea Corallo2020-10-23 20:08:58 +0100
commit99e7cc0da652bf0f19f691d5de3b3ce7c15e8c39 (patch)
treee7c4921579cfeac379b649f27c2da78fed8aae48 /src/eval.c
parent3be93390fb6680d1e0c3256af72c86635a9eb327 (diff)
parent46f5d2867cf73a845d582eeb8929ae51b78eae55 (diff)
downloademacs-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.c5
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) */)
553DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, 553DEFUN ("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.
555In byte compilation, `function' causes its argument to be handled by 555In byte compilation, `function' causes its argument to be handled by
556the byte compiler. `quote' cannot do that. 556the byte compiler. Similarly, when expanding macros and expressions,
557ARG can be examined and possibly expanded. If `quote' is used
558instead, this doesn't happen.
559
557usage: (function ARG) */) 560usage: (function ARG) */)
558 (Lisp_Object args) 561 (Lisp_Object args)
559{ 562{