| 578 | } |
| 579 | |
| 580 | void LexState::SetWordList(int n, const char *wl) { |
| 581 | if (instance) { |
| 582 | int firstModification = instance->WordListSet(n, wl); |
| 583 | if (firstModification >= 0) { |
| 584 | pdoc->ModifiedAt(firstModification); |
| 585 | } |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | int LexState::GetStyleBitsNeeded() const { |
| 590 | return lexCurrent ? lexCurrent->GetStyleBitsNeeded() : 5; |
no test coverage detected