MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / DefineWordListSets

Method DefineWordListSets

scintilla/lexlib/OptionSet.h:123–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121 }
122
123 void DefineWordListSets(const char * const wordListDescriptions[]) {
124 if (wordListDescriptions) {
125 for (size_t wl = 0; wordListDescriptions[wl]; wl++) {
126 if (!wordLists.empty())
127 wordLists += "\n";
128 wordLists += wordListDescriptions[wl];
129 }
130 }
131 }
132
133 const char *DescribeWordListSets() {
134 return wordLists.c_str();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected