From 8f5c26cec2190cda947eb113b96dbe4d42bac83a Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 6 Dec 2025 12:33:44 +0200 Subject: [PATCH] ; * src/eval.c (Ffunc_arity): Doc fix (bug#79880). --- src/eval.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index 0c29de9f3ad..18f1b65f0f9 100644 --- a/src/eval.c +++ b/src/eval.c @@ -3444,7 +3444,12 @@ DEFUN ("func-arity", Ffunc_arity, Sfunc_arity, 1, 1, 0, FUNCTION must be a function of some kind. The returned value is a cons cell (MIN . MAX). MIN is the minimum number of args. MAX is the maximum number, or the symbol `many', for a -function with `&rest' args, or `unevalled' for a special form. */) +function with `&rest' args, or `unevalled' for a special form. + +Note that this function might return inaccurate results in some cases, +such as with functions defined using `apply-partially', functions +advised using `advice-add', and functions that determine their arg +list dynamically. */) (Lisp_Object function) { Lisp_Object original;