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
This commit is contained in:
Shynur 2023-04-04 15:07:37 +08:00 committed by Eli Zaretskii
parent db308233cb
commit a832bc7090

View file

@ -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 In practice, nearly all functions have names, and are referred to by
their names. You can create a named Lisp function by defining a their names. You can create a named Lisp function by defining a
lambda expression and putting it in a function cell (@pxref{Function lambda expression and putting it in a function cell (@pxref{Function
Cells}). However, it is more common to use the @code{defun} special Cells}). However, it is more common to use the @code{defun} macro,
form, described in the next section. described in the next section.
@ifnottex @ifnottex
@xref{Defining Functions}. @xref{Defining Functions}.
@end ifnottex @end ifnottex