Commit 373bc2fa authored by Chris Allegretta's avatar Chris Allegretta
Browse files

General - Added separate regex variable (color_regex and colormatches) so that...

General - Added separate regex variable (color_regex and colormatches) so that color syntax and regex search/replace can coexist


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1141 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 3533a348
Showing with 1 addition and 1 deletion
+1 -1
......@@ -125,7 +125,7 @@ regmatch_t regmatches[10]; /* Match positions for parenthetical
subexpressions, max of 10 */
#ifdef ENABLE_COLOR
regex_t color_regexp; /* Global to store compiled search regexp */
regmatch_t colormatches; /* Match positions for parenthetical */
regmatch_t colormatches[1]; /* Match positions for parenthetical */
#endif /* ENABLE_COLOR */
#endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment