summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorShynur <one.last.kiss@outlook.com>2023-04-04 15:07:37 +0800
committerEli Zaretskii <eliz@gnu.org>2023-04-04 14:16:23 +0300
commita832bc7090c6f2657afaec1cf86d1444344cfa56 (patch)
tree3169eca82d99b52d6f37d6fa810f008e7a592b34 /doc
parentdb308233cb3d839eef0c99290c7b244194a40899 (diff)
downloademacs-a832bc7090c6f2657afaec1cf86d1444344cfa56.tar.gz
Correct terminology in Elisp Reference Manual
* doc/lispref/functions.texi (Function Names): 'defun' is a macro, not a special form. (Bug#62661) Copyright-paperwork-exempt: yes
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/functions.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index d38f6ef38bc..551e743a653 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -593,8 +593,8 @@ symbol a function definition, its function cell is said to be
In practice, nearly all functions have names, and are referred to by
their names. You can create a named Lisp function by defining a
lambda expression and putting it in a function cell (@pxref{Function
-Cells}). However, it is more common to use the @code{defun} special
-form, described in the next section.
+Cells}). However, it is more common to use the @code{defun} macro,
+described in the next section.
@ifnottex
@xref{Defining Functions}.
@end ifnottex