diff options
| author | Andrea Corallo | 2020-09-06 18:21:00 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-09-06 18:21:00 +0200 |
| commit | d344e79be9fb82a38a89c892e24d5ca71fbff810 (patch) | |
| tree | b59b2af5f7e0f2d9fa4105901ab1e995e935c8c6 /src | |
| parent | 3a9139d197ea1a211b64ca70e1f7e1f0545a4424 (diff) | |
| download | emacs-d344e79be9fb82a38a89c892e24d5ca71fbff810.tar.gz emacs-d344e79be9fb82a38a89c892e24d5ca71fbff810.zip | |
* src/data.c (subr-native-lambda-list): Defined it unconditionally (bug#43255)
Diffstat (limited to 'src')
| -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 0acae67b2a8..85c73b406c4 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -882,8 +882,6 @@ function, nil otherwise. */) | |||
| 882 | return SUBR_NATIVE_COMPILEDP (object) ? Qt : Qnil; | 882 | return SUBR_NATIVE_COMPILEDP (object) ? Qt : Qnil; |
| 883 | } | 883 | } |
| 884 | 884 | ||
| 885 | #ifdef HAVE_NATIVE_COMP | ||
| 886 | |||
| 887 | DEFUN ("subr-native-lambda-list", Fsubr_native_lambda_list, | 885 | DEFUN ("subr-native-lambda-list", Fsubr_native_lambda_list, |
| 888 | Ssubr_native_lambda_list, 1, 1, 0, | 886 | Ssubr_native_lambda_list, 1, 1, 0, |
| 889 | doc: /* Return the lambda list for a native compiled lisp/d | 887 | doc: /* Return the lambda list for a native compiled lisp/d |
| @@ -897,6 +895,8 @@ function or t otherwise. */) | |||
| 897 | : Qt; | 895 | : Qt; |
| 898 | } | 896 | } |
| 899 | 897 | ||
| 898 | #ifdef HAVE_NATIVE_COMP | ||
| 899 | |||
| 900 | DEFUN ("subr-native-comp-unit", Fsubr_native_comp_unit, | 900 | DEFUN ("subr-native-comp-unit", Fsubr_native_comp_unit, |
| 901 | Ssubr_native_comp_unit, 1, 1, 0, | 901 | Ssubr_native_comp_unit, 1, 1, 0, |
| 902 | doc: /* Return the native compilation unit. */) | 902 | doc: /* Return the native compilation unit. */) |