We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c977de commit d9706abCopy full SHA for d9706ab
ProcessPreviousLine.cpp
@@ -779,7 +779,16 @@ assemble the full text of the original line.
779
} // end of each style
780
781
782
- } // end of coming across a note line
+ } // end of coming across a note or command line
783
+ else
784
+ { // must be an output line
785
+ // consider that this line is no longer a "recent line"
786
+ // if a trigger stopped all trigger evaluation.
787
+ // Suggested by Fiendish - version 5.06
788
+ if (m_iStopTriggerEvaluation == eStopEvaluatingTriggersInAllPlugins)
789
+ if (!m_sRecentLines.empty ()) // if sane to do so
790
+ m_sRecentLines.pop_back ();
791
+ }
792
793
delete pLine; // delete contents of tail iten -- version 3.85
794
m_LineList.RemoveTail (); // get rid of the line
0 commit comments