; * src/data.c (Fsubrp): Improve docstring.
This commit is contained in:
parent
4f3e8c3b4e
commit
9a04b99b3d
1 changed files with 3 additions and 1 deletions
|
@ -505,7 +505,9 @@ DEFUN ("user-ptrp", Fuser_ptrp, Suser_ptrp, 1, 1, 0,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DEFUN ("subrp", Fsubrp, Ssubrp, 1, 1, 0,
|
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)
|
(Lisp_Object object)
|
||||||
{
|
{
|
||||||
if (SUBRP (object))
|
if (SUBRP (object))
|
||||||
|
|
Loading…
Add table
Reference in a new issue