aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/find-func.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index f5f8c822089..a4577a53164 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -432,7 +432,7 @@ message about the whole chain of aliases."
432 (cons function 432 (cons function
433 (cond 433 (cond
434 ((autoloadp def) (nth 1 def)) 434 ((autoloadp def) (nth 1 def))
435 ((and (subrp def) (not (subr-native-elisp-p def))) 435 ((subr-primitive-p def)
436 (if lisp-only 436 (if lisp-only
437 (error "%s is a built-in function" function)) 437 (error "%s is a built-in function" function))
438 (help-C-file-name def 'subr)) 438 (help-C-file-name def 'subr))