diff options
| author | Andrea Corallo | 2019-09-26 12:11:13 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:37:54 +0100 |
| commit | 7d3da0a37edd57f6a31dff4864bcf1753de48698 (patch) | |
| tree | 8a56398e51c15cecd21ee2f9fde6bbf0f27cd794 /src/data.c | |
| parent | 5630ebaf74f2f86e5d59fe4cba5ba96333e9fa6f (diff) | |
| download | emacs-7d3da0a37edd57f6a31dff4864bcf1753de48698.tar.gz emacs-7d3da0a37edd57f6a31dff4864bcf1753de48698.zip | |
fix subr-native-elisp-p predicate name
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 70068c30a71..2a32d47c49b 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -865,7 +865,7 @@ SUBR must be a built-in function. */) | |||
| 865 | } | 865 | } |
| 866 | 866 | ||
| 867 | #ifdef HAVE_NATIVE_COMP | 867 | #ifdef HAVE_NATIVE_COMP |
| 868 | DEFUN ("subr-native-elispp", Fsubr_native_elispp, Ssubr_native_elispp, 1, 1, 0, | 868 | DEFUN ("subr-native-elisp-p", Fsubr_native_elisp_p, Ssubr_native_elisp_p, 1, 1, 0, |
| 869 | doc: /* Return t if the subr is native compiled elisp, | 869 | doc: /* Return t if the subr is native compiled elisp, |
| 870 | nil otherwise. */) | 870 | nil otherwise. */) |
| 871 | (Lisp_Object subr) | 871 | (Lisp_Object subr) |
| @@ -3995,7 +3995,7 @@ syms_of_data (void) | |||
| 3995 | defsubr (&Ssubr_arity); | 3995 | defsubr (&Ssubr_arity); |
| 3996 | defsubr (&Ssubr_name); | 3996 | defsubr (&Ssubr_name); |
| 3997 | #ifdef HAVE_NATIVE_COMP | 3997 | #ifdef HAVE_NATIVE_COMP |
| 3998 | defsubr (&Ssubr_native_elispp); | 3998 | defsubr (&Ssubr_native_elisp_p); |
| 3999 | #endif | 3999 | #endif |
| 4000 | #ifdef HAVE_MODULES | 4000 | #ifdef HAVE_MODULES |
| 4001 | defsubr (&Suser_ptrp); | 4001 | defsubr (&Suser_ptrp); |