summaryrefslogtreecommitdiffstats
path: root/OptionItem.c
AgeCommit message (Collapse)Author
2022-05-27Add some headers in the Setup -> Display options panelDaniel Lange
2021-09-22Update license headers to explicitly say GPLv2+Daniel Lange
2021-04-26Use RichString_appendnAscii where possibleChristian Göttsche
`RichString_appendnAscii()` avoids a `strlen(3)` call over ` RichString_appendAscii()`. Use the former where the length is available from a previous checked `snprintf(3)` call. Keep `RichString_appendAscii()` when passing a string literal and rely on compilers to optimize the `strlen(3)` call away.
2020-12-08Split RichString_(append|appendn|write) into wide and asciiChristian Göttsche
RichString_writeFrom takes a top spot during performance analysis due to the calls to mbstowcs() and iswprint(). Most of the time we know in advance that we are only going to print regular ASCII characters.
2020-12-06IWYU updateChristian Göttsche
2020-11-25Add support to change numeric options in settings screenChristian Göttsche
Like delay or highlightDelaySecs