diff options
| author | Stefan Monnier | 2022-08-15 18:45:58 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2022-08-15 18:45:58 -0400 |
| commit | 6e628ff99c3b55a74f3f34aed232ce8a1746aa27 (patch) | |
| tree | cc302d6767c3f463a38c2dfa3be8a38109025311 | |
| parent | 82635f40ed4274a0bc372351902ff1cdef6dff23 (diff) | |
| download | emacs-6e628ff99c3b55a74f3f34aed232ce8a1746aa27.tar.gz emacs-6e628ff99c3b55a74f3f34aed232ce8a1746aa27.zip | |
* doc/lispref/functions.texi (What Is a Function): Improve further
| -rw-r--r-- | doc/lispref/functions.texi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index ddf7cff6c2e..983dfe2ec59 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -219,10 +219,12 @@ function. For example: | |||
| 219 | 219 | ||
| 220 | @defun compiled-function-p object | 220 | @defun compiled-function-p object |
| 221 | This function returns @code{t} if @var{object} is a function object | 221 | This function returns @code{t} if @var{object} is a function object |
| 222 | that was either built-in (a.k.a.@: ``primitive'', @pxref{What Is a | 222 | that is not in the form of ELisp source code but something like |
| 223 | Function}), or byte-compiled (@pxref{Byte Compilation}), or | 223 | machine code or byte code instead. More specifically it returns |
| 224 | natively-compiled (@pxref{Native Compilation}), or a function loaded | 224 | @code{t} if the function is built-in (a.k.a.@: ``primitive'', |
| 225 | from a dynamic module (@pxref{Dynamic Modules}). | 225 | @pxref{What Is a Function}), or byte-compiled (@pxref{Byte |
| 226 | Compilation}), or natively-compiled (@pxref{Native Compilation}), or | ||
| 227 | a function loaded from a dynamic module (@pxref{Dynamic Modules}). | ||
| 226 | @end defun | 228 | @end defun |
| 227 | 229 | ||
| 228 | @defun subr-arity subr | 230 | @defun subr-arity subr |