+2016-03-14 Benno Schulenberg <bensberg@justemail.net>
+ * src/color.c (color_update): Don't dereference a possible NULL.
+
2016-03-13 Benno Schulenberg <bensberg@justemail.net>
* src/search.c (regexp_init): Allow using the word boundary markers
\< and \> in search strings on non-GNU systems. This is a partial
/* If a syntax was found, compile its specified regexes (which have
* already been checked for validity when they were read in). */
- for (ink = sint->color; ink != NULL; ink = ink->next) {
+ for (ink = openfile->colorstrings; ink != NULL; ink = ink->next) {
if (ink->start == NULL) {
ink->start = (regex_t *)nmalloc(sizeof(regex_t));
regcomp(ink->start, fixbounds(ink->start_regex), ink->rex_flags);