aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-13 00:02:43 +0000
committerKarl Heuer1995-01-13 00:02:43 +0000
commit25be741f21c18a33f7b92a9a7c24002566a6b455 (patch)
treef82ef591d10a749da503d336bc4179e75c9e6097 /src
parent1fb577f7e53a5d2e02752c0cce2e5912b33bbcec (diff)
downloademacs-25be741f21c18a33f7b92a9a7c24002566a6b455.tar.gz
emacs-25be741f21c18a33f7b92a9a7c24002566a6b455.zip
Don't allow MARKBIT and DONT_COPY_FLAG to be the same bit.
Diffstat (limited to 'src')
-rw-r--r--src/alloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 5776a2be927..29e0ab46ea0 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -118,6 +118,10 @@ Lisp_Object memory_signal_data;
118#define DONT_COPY_FLAG 1 118#define DONT_COPY_FLAG 1
119#endif /* no DONT_COPY_FLAG */ 119#endif /* no DONT_COPY_FLAG */
120 120
121#if DONT_COPY_FLAG == MARKBIT
122you lose
123#endif
124
121/* Buffer in which we save a copy of the C stack at each GC. */ 125/* Buffer in which we save a copy of the C stack at each GC. */
122 126
123char *stack_copy; 127char *stack_copy;