]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix documentation of 'compiled-function-p' (bug#56648)
authorEli Zaretskii <eliz@gnu.org>
Sun, 14 Aug 2022 16:45:32 +0000 (19:45 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 14 Aug 2022 16:45:32 +0000 (19:45 +0300)
* etc/NEWS: Fix a typo and expand the description of
'compiled-function-p'.

* doc/lispref/functions.texi (What Is a Function): Fix wording of
the documentation of 'compiled-function-p'.

doc/lispref/functions.texi
etc/NEWS

index a7ce3270f5fad56e6e5e45dc47dd06502d553370..8c6328b4402315f7bee4f19e864ef21505c58c4f 100644 (file)
@@ -219,7 +219,8 @@ function.  For example:
 
 @defun compiled-function-p object
 This function returns @code{t} if @var{object} is a function object
-implemented in byte-code or machine code.
+that was either byte-compiled (@pxref{Byte Compilation}) or
+natively-compiled (@pxref{Native Compilation}).
 @end defun
 
 @defun subr-arity subr
index 0584403d8c7fc215e38ff81a2f9dec1b4471446b..0788b94da22e9adf68a83533ee8dc0a2ac5f5981 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2572,7 +2572,9 @@ patcomp.el, pc-mode.el, pc-select.el, s-region.el, and sregex.el.
 * Lisp Changes in Emacs 29.1
 
 +++
-** New function 'compile-function-p'.
+** New function 'compiled-function-p'.
+This returns non-nil if its argument is either a byte-compiled or a
+natively-compiled function object.
 
 ---
 ** 'deactivate-mark' can have new value 'dont-save'.