summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2017-06-24 14:56:50 +0200
committerLukas Mai <l.mai@web.de>2017-06-24 14:56:50 +0200
commit1fced1a2c6a67934990a50b61e729760a556308b (patch)
tree6d8908aa7d80b29cc97ad7d705e2c0cbf4066e75 /cop.h
parent87058c31e9fa350bda8d797127c9c175d0b1a893 (diff)
downloadperl-1fced1a2c6a67934990a50b61e729760a556308b.tar.gz
fix #ifdef directives with extra tokens
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cop.h b/cop.h
index 42257c7e4e..ce688ab54f 100644
--- a/cop.h
+++ b/cop.h
@@ -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;