aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2019-04-19 23:17:19 +0200
committerPhilipp Stephani2019-04-19 23:17:19 +0200
commit992fd76ce9fcc849971efdee71f35985a1fa0247 (patch)
tree2707f00a7ee095f566ec278b1d4280b91de88543
parentf5776e0eac52133e66055a8436b0d02d5eaf0faf (diff)
downloademacs-992fd76ce9fcc849971efdee71f35985a1fa0247.tar.gz
emacs-992fd76ce9fcc849971efdee71f35985a1fa0247.zip
Remove some ineffective #ifdefs.
Since DEFSYM doesn't by itself do anything and make-docfile ignores preprocessor statements, conditional compilation of DEFSYMs is ineffective. * src/data.c (syms_of_data): Remove ineffective #ifdefs.
-rw-r--r--src/data.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 596b7783747..7928a1dc41d 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3836,9 +3836,7 @@ syms_of_data (void)
3836 DEFSYM (Qbool_vector_p, "bool-vector-p"); 3836 DEFSYM (Qbool_vector_p, "bool-vector-p");
3837 DEFSYM (Qchar_or_string_p, "char-or-string-p"); 3837 DEFSYM (Qchar_or_string_p, "char-or-string-p");
3838 DEFSYM (Qmarkerp, "markerp"); 3838 DEFSYM (Qmarkerp, "markerp");
3839#ifdef HAVE_MODULES
3840 DEFSYM (Quser_ptrp, "user-ptrp"); 3839 DEFSYM (Quser_ptrp, "user-ptrp");
3841#endif
3842 DEFSYM (Qbuffer_or_string_p, "buffer-or-string-p"); 3840 DEFSYM (Qbuffer_or_string_p, "buffer-or-string-p");
3843 DEFSYM (Qinteger_or_marker_p, "integer-or-marker-p"); 3841 DEFSYM (Qinteger_or_marker_p, "integer-or-marker-p");
3844 DEFSYM (Qfboundp, "fboundp"); 3842 DEFSYM (Qfboundp, "fboundp");
@@ -3933,9 +3931,7 @@ syms_of_data (void)
3933 DEFSYM (Qoverlay, "overlay"); 3931 DEFSYM (Qoverlay, "overlay");
3934 DEFSYM (Qfinalizer, "finalizer"); 3932 DEFSYM (Qfinalizer, "finalizer");
3935 DEFSYM (Qmodule_function, "module-function"); 3933 DEFSYM (Qmodule_function, "module-function");
3936#ifdef HAVE_MODULES
3937 DEFSYM (Quser_ptr, "user-ptr"); 3934 DEFSYM (Quser_ptr, "user-ptr");
3938#endif
3939 DEFSYM (Qfloat, "float"); 3935 DEFSYM (Qfloat, "float");
3940 DEFSYM (Qwindow_configuration, "window-configuration"); 3936 DEFSYM (Qwindow_configuration, "window-configuration");
3941 DEFSYM (Qprocess, "process"); 3937 DEFSYM (Qprocess, "process");