aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index 6fde7e30b7f..77d435acbe6 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -517,7 +517,7 @@ DEFUN ("quote", Fquote, Squote, 1, UNEVALLED, 0,
517Warning: `quote' does not construct its return value, but just returns 517Warning: `quote' does not construct its return value, but just returns
518the value that was pre-constructed by the Lisp reader (see info node 518the value that was pre-constructed by the Lisp reader (see info node
519`(elisp)Printed Representation'). 519`(elisp)Printed Representation').
520This means that '(a . b) is not identical to (cons 'a 'b): the former 520This means that \\='(a . b) is not identical to (cons \\='a \\='b): the former
521does not cons. Quoting should be reserved for constants that will 521does not cons. Quoting should be reserved for constants that will
522never be modified by side-effects, unless you like self-modifying code. 522never be modified by side-effects, unless you like self-modifying code.
523See the common pitfall in info node `(elisp)Rearrangement' for an example 523See the common pitfall in info node `(elisp)Rearrangement' for an example
@@ -2196,7 +2196,7 @@ eval_sub (Lisp_Object form)
2196DEFUN ("apply", Fapply, Sapply, 1, MANY, 0, 2196DEFUN ("apply", Fapply, Sapply, 1, MANY, 0,
2197 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args. 2197 doc: /* Call FUNCTION with our remaining args, using our last arg as list of args.
2198Then return the value FUNCTION returns. 2198Then return the value FUNCTION returns.
2199Thus, (apply '+ 1 2 '(3 4)) returns 10. 2199Thus, (apply \\='+ 1 2 \\='(3 4)) returns 10.
2200usage: (apply FUNCTION &rest ARGUMENTS) */) 2200usage: (apply FUNCTION &rest ARGUMENTS) */)
2201 (ptrdiff_t nargs, Lisp_Object *args) 2201 (ptrdiff_t nargs, Lisp_Object *args)
2202{ 2202{
@@ -2557,7 +2557,7 @@ DEFUN ("functionp", Ffunctionp, Sfunctionp, 1, 1, 0,
2557DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0, 2557DEFUN ("funcall", Ffuncall, Sfuncall, 1, MANY, 0,
2558 doc: /* Call first argument as a function, passing remaining arguments to it. 2558 doc: /* Call first argument as a function, passing remaining arguments to it.
2559Return the value that function returns. 2559Return the value that function returns.
2560Thus, (funcall 'cons 'x 'y) returns (x . y). 2560Thus, (funcall \\='cons \\='x \\='y) returns (x . y).
2561usage: (funcall FUNCTION &rest ARGUMENTS) */) 2561usage: (funcall FUNCTION &rest ARGUMENTS) */)
2562 (ptrdiff_t nargs, Lisp_Object *args) 2562 (ptrdiff_t nargs, Lisp_Object *args)
2563{ 2563{