diff options
author | Lukas Mai <l.mai@web.de> | 2017-06-24 14:56:50 +0200 |
---|---|---|
committer | Lukas Mai <l.mai@web.de> | 2017-06-24 14:56:50 +0200 |
commit | 1fced1a2c6a67934990a50b61e729760a556308b (patch) | |
tree | 6d8908aa7d80b29cc97ad7d705e2c0cbf4066e75 /cop.h | |
parent | 87058c31e9fa350bda8d797127c9c175d0b1a893 (diff) | |
download | perl-1fced1a2c6a67934990a50b61e729760a556308b.tar.gz |
fix #ifdef directives with extra tokens
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -994,7 +994,7 @@ struct stackinfo { I32 si_markoff; /* offset where markstack begins for us. * currently used only with DEBUGGING, * but not #ifdef-ed for bincompat */ -#ifdef DEBUGGING && !defined DEBUGGING_RE_ONLY +#if defined DEBUGGING && !defined DEBUGGING_RE_ONLY /* high water mark: for checking if the stack was correctly extended / * tested for extension by each pp function */ SSize_t si_stack_hwm; |