aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Heerdegen2019-04-27 09:40:10 +0200
committerMichael Heerdegen2019-05-24 00:51:46 +0200
commit84a3da15e96504cfcbaf295cfb0babca8d8700e5 (patch)
treed36bee86f5042b63324e1ef0faa53221ac11370e
parenta564d6e8bb0e5058c4c356a85a42c091436ad382 (diff)
downloademacs-84a3da15e96504cfcbaf295cfb0babca8d8700e5.tar.gz
emacs-84a3da15e96504cfcbaf295cfb0babca8d8700e5.zip
Improve documentation of the 'function' special form
Point out that 'function' quoting is beneficial also for symbols. * src/eval.c (function): Enhance docstring. * doc/lispref/functions.texi (Anonymous Functions): Improve documentation.
-rw-r--r--doc/lispref/functions.texi4
-rw-r--r--src/eval.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 97f7fb9f79e..2f9d898c9b0 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -1122,6 +1122,10 @@ a byte-code function object (@pxref{Byte Compilation}).
1122When lexical binding is enabled, @var{function-object} is converted 1122When lexical binding is enabled, @var{function-object} is converted
1123into a closure. @xref{Closures}. 1123into a closure. @xref{Closures}.
1124@end itemize 1124@end itemize
1125
1126When @var{function-object} is a symbol and the code is byte compiled,
1127the byte-compiler will warn if that function is not defined or might
1128not be known at run time.
1125@end defspec 1129@end defspec
1126 1130
1127@cindex @samp{#'} syntax 1131@cindex @samp{#'} syntax
diff --git a/src/eval.c b/src/eval.c
index 567c32e0d75..5bba8766373 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -544,8 +544,8 @@ usage: (quote ARG) */)
544 544
545DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0, 545DEFUN ("function", Ffunction, Sfunction, 1, UNEVALLED, 0,
546 doc: /* Like `quote', but preferred for objects which are functions. 546 doc: /* Like `quote', but preferred for objects which are functions.
547In byte compilation, `function' causes its argument to be compiled. 547In byte compilation, `function' causes its argument to be handled by
548`quote' cannot do that. 548the byte compiler. `quote' cannot do that.
549usage: (function ARG) */) 549usage: (function ARG) */)
550 (Lisp_Object args) 550 (Lisp_Object args)
551{ 551{