Fix buglet in recent update for showing malloc/free at match time.

This commit is contained in:
Philip.Hazel 2017-03-31 15:51:41 +00:00
parent bdac9df4cf
commit a073581116
1 changed files with 4 additions and 3 deletions

View File

@ -464,8 +464,10 @@ so many of them that they are split into two fields. */
#define CTL_ANYINFO (CTL_DEBUG|CTL_BINCODE|CTL_CALLOUT_INFO) #define CTL_ANYINFO (CTL_DEBUG|CTL_BINCODE|CTL_CALLOUT_INFO)
#define CTL_ANYGLOB (CTL_ALTGLOBAL|CTL_GLOBAL) #define CTL_ANYGLOB (CTL_ALTGLOBAL|CTL_GLOBAL)
/* These are all the controls that may be set either on a pattern or on a /* These are the matching controls that may be set either on a pattern or on a
data line. */ data line. They are copied from the pattern controls as initial settings for
data line controls Note that CTL_MEMORY is not included here, because it does
different things in the two cases. */
#define CTL_ALLPD (CTL_AFTERTEXT|\ #define CTL_ALLPD (CTL_AFTERTEXT|\
CTL_ALLAFTERTEXT|\ CTL_ALLAFTERTEXT|\
@ -474,7 +476,6 @@ data line. */
CTL_ALTGLOBAL|\ CTL_ALTGLOBAL|\
CTL_GLOBAL|\ CTL_GLOBAL|\
CTL_MARK|\ CTL_MARK|\
CTL_MEMORY|\
CTL_STARTCHAR|\ CTL_STARTCHAR|\
CTL_UTF8_INPUT) CTL_UTF8_INPUT)