]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Sun, 14 Aug 2022 17:50:56 +0000 (20:50 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 14 Aug 2022 17:50:56 +0000 (20:50 +0300)
doc/lispref/functions.texi
etc/NEWS

index 8c6328b4402315f7bee4f19e864ef21505c58c4f..e140998d65272ca6af7e2f7bcac59135ed9ca175 100644 (file)
@@ -219,8 +219,10 @@ function.  For example:
 
 @defun compiled-function-p object
 This function returns @code{t} if @var{object} is a function object
-that was either byte-compiled (@pxref{Byte Compilation}) or
-natively-compiled (@pxref{Native Compilation}).
+that was either built-in (a.k.a.@: ``primitive'', @pxref{What is a
+Function}), or byte-compiled (@pxref{Byte Compilation}), or
+natively-compiled (@pxref{Native Compilation}), or a function loaded
+from a dynamic module (@pxref{Dynamic Modules}).
 @end defun
 
 @defun subr-arity subr
index 0788b94da22e9adf68a83533ee8dc0a2ac5f5981..c982684d3a93088ba92e17351a918a00e3618e4f 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2573,8 +2573,9 @@ patcomp.el, pc-mode.el, pc-select.el, s-region.el, and sregex.el.
 
 +++
 ** New function 'compiled-function-p'.
-This returns non-nil if its argument is either a byte-compiled or a
-natively-compiled function object.
+This returns non-nil if its argument is either a built-in, or a
+byte-compiled, or a natively-compiled function object, or a function
+loaded from a dynamic module.
 
 ---
 ** 'deactivate-mark' can have new value 'dont-save'.