aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorAndrea Corallo2019-12-25 23:04:13 +0100
committerAndrea Corallo2020-01-01 11:38:17 +0100
commitfdb31d6a2709bff751c2ad240c41b30db1848b44 (patch)
tree7f36ac4efde999fa92896c9a37167956db704074 /src/data.c
parent9514dbf7ed70b6c08a11fd58c7889ff49e30ac13 (diff)
downloademacs-fdb31d6a2709bff751c2ad240c41b30db1848b44.tar.gz
emacs-fdb31d6a2709bff751c2ad240c41b30db1848b44.zip
fix naming for predicate SUBR_NATIVE_COMPILEDP
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index d20db4dc3a3..191fb313687 100644
--- a/src/data.c
+++ b/src/data.c
@@ -872,7 +872,7 @@ DEFUN ("subr-native-elisp-p", Fsubr_native_elisp_p, Ssubr_native_elisp_p, 1, 1,
872nil otherwise. */) 872nil otherwise. */)
873 (Lisp_Object object) 873 (Lisp_Object object)
874{ 874{
875 return SUBRP_NATIVE_COMPILEDP (object) ? Qt : Qnil; 875 return SUBR_NATIVE_COMPILEDP (object) ? Qt : Qnil;
876} 876}
877 877
878DEFUN ("subr-native-comp-unit", Fsubr_native_comp_unit, 878DEFUN ("subr-native-comp-unit", Fsubr_native_comp_unit,
@@ -919,7 +919,7 @@ Value, if non-nil, is a list (interactive SPEC). */)
919 919
920 if (SUBRP (fun)) 920 if (SUBRP (fun))
921 { 921 {
922 if (SUBRP_NATIVE_COMPILEDP (fun) && XSUBR (fun)->native_intspec) 922 if (SUBR_NATIVE_COMPILEDP (fun) && XSUBR (fun)->native_intspec)
923 return XSUBR (fun)->native_intspec; 923 return XSUBR (fun)->native_intspec;
924 924
925 const char *spec = XSUBR (fun)->intspec; 925 const char *spec = XSUBR (fun)->intspec;