mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
Handle TIME...MOT...LOC continuation lines that are not indented
This commit is contained in:
parent
5639c6c328
commit
243e874b55
1 changed files with 3 additions and 1 deletions
|
|
@ -245,7 +245,9 @@ void ParseCodedInformation(std::shared_ptr<Segment> segment,
|
|||
}
|
||||
else if (codedMotionBegin != productContent.cend() &&
|
||||
codedMotionEnd == productContent.cend() &&
|
||||
!it->starts_with(" ") /* Continuation line */)
|
||||
!it->starts_with(" ") &&
|
||||
!std::regex_search(*it, std::regex {"^[0-9]"})
|
||||
/* Continuation lines */)
|
||||
{
|
||||
codedMotionEnd = it;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue