From ffa59bb1611609879151b6dfa94772f9e2144849 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 2 Feb 2020 22:24:03 +0100 Subject: [PATCH] Always define subr-native-elisp-p also without native compiler --- src/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.c b/src/data.c index 8901ffbb2c3..b7337b19bc6 100644 --- a/src/data.c +++ b/src/data.c @@ -866,7 +866,6 @@ SUBR must be a built-in function. */) return build_string (name); } -#ifdef HAVE_NATIVE_COMP DEFUN ("subr-native-elisp-p", Fsubr_native_elisp_p, Ssubr_native_elisp_p, 1, 1, 0, doc: /* Return t if the object is native compiled lisp function, nil otherwise. */) @@ -875,6 +874,7 @@ nil otherwise. */) return SUBR_NATIVE_COMPILEDP (object) ? Qt : Qnil; } +#ifdef HAVE_NATIVE_COMP DEFUN ("subr-native-comp-unit", Fsubr_native_comp_unit, Ssubr_native_comp_unit, 1, 1, 0, doc: /* Return the native compilation unit. */) -- 2.39.5