Cleanup some trailing whitespaces and double semicolon
This commit is contained in:
parent
737807dde2
commit
7cf3cbde8e
|
@ -497,7 +497,7 @@ std::unique_ptr<Highlighter> create_dynamic_regex_highlighter(HighlighterParamet
|
||||||
std::decay_t<decltype(face_getter)>>>(
|
std::decay_t<decltype(face_getter)>>>(
|
||||||
std::move(regex_getter), std::move(face_getter));
|
std::move(regex_getter), std::move(face_getter));
|
||||||
};
|
};
|
||||||
auto get_face = [faces](const Context& context){ return faces;; };
|
auto get_face = [faces](const Context& context){ return faces; };
|
||||||
|
|
||||||
CommandParser parser{params[0]};
|
CommandParser parser{params[0]};
|
||||||
auto token = parser.read_token(true);
|
auto token = parser.read_token(true);
|
||||||
|
|
|
@ -368,7 +368,7 @@ private:
|
||||||
if (pos == config.end)
|
if (pos == config.end)
|
||||||
return StepResult::Failed;
|
return StepResult::Failed;
|
||||||
return is_ctype((CharacterType)inst.param, *pos) ?
|
return is_ctype((CharacterType)inst.param, *pos) ?
|
||||||
StepResult::Consumed : StepResult::Failed;;
|
StepResult::Consumed : StepResult::Failed;
|
||||||
case CompiledRegex::LineStart:
|
case CompiledRegex::LineStart:
|
||||||
if (not is_line_start(pos, config))
|
if (not is_line_start(pos, config))
|
||||||
return StepResult::Failed;
|
return StepResult::Failed;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user