Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
royqh1979 committed Feb 21, 2024
1 parent e49f815 commit 15c5956
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/qsynedit/qsynedit/syntaxer/cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,8 @@ void CppSyntaxer::procRawString()
if (mRange.state!=RangeState::rsRawStringNotEscaping &&
(mLine[mRun]=='"'
|| mLine[mRun].isSpace()
|| mLine[mRun].unicode()>127)) {
|| mLine[mRun].unicode()>127
|| mLine[mRun].unicode()<=32)) {
mRange.state = RangeState::rsUnknown;
mRun+=1;
return;
Expand Down

0 comments on commit 15c5956

Please sign in to comment.