1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

; * src/data.c (Fsubrp): Improve docstring.

This commit is contained in:
Andrea Corallo 2024-08-15 10:47:00 +02:00
parent 4f3e8c3b4e
commit 9a04b99b3d

View File

@ -505,7 +505,9 @@ DEFUN ("user-ptrp", Fuser_ptrp, Suser_ptrp, 1, 1, 0,
#endif
DEFUN ("subrp", Fsubrp, Ssubrp, 1, 1, 0,
doc: /* Return t if OBJECT is a built-in function. */)
doc: /* Return t if OBJECT is a built-in or native compiled Lisp function.
See also `primitive-function-p' and `native-comp-function-p'. */)
(Lisp_Object object)
{
if (SUBRP (object))