]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/data.c (Fsubrp): Improve docstring.
authorAndrea Corallo <acorallo@gnu.org>
Thu, 15 Aug 2024 08:47:00 +0000 (10:47 +0200)
committerEshel Yaron <me@eshelyaron.com>
Tue, 20 Aug 2024 14:08:11 +0000 (16:08 +0200)
(cherry picked from commit 9a04b99b3d39d8f5aa965ad486e26012b686c7a0)

src/data.c

index 6fa543c97cf3e6a1964114fa40c7a032780aa579..fd2d9705642b5da07973e51b587ed27624aef4a1 100644 (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))