- Add a better string matching sequence that includes escaped quotes (thanks to Carl E. Lindberg, who doesn't even know he helped ;-)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1277 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2002-09-18 00:00:12 +00:00
parent 515ba32513
commit 3f9c3bf10b
2 changed files with 4 additions and 1 deletions

View File

@ -116,6 +116,9 @@ CVS code -
- nanorc.sample:
- Fix the c-file regex for all caps words to be extended regex
format ({} instead of \{\}) (found by DLR).
- Add a better string matching sequence that includes escaped
quotes (thanks to Carl E. Lindberg, who doesn't even know he
helped ;-)
- utils.c:
charalloc()
- Switch from using calloc() to using malloc(). (David

View File

@ -102,7 +102,7 @@
# because syntax highlighting rules will be applied in the order they are
# read in
# color brightyellow "<[^= ]*>" "\"[^"]*\""
# color brightyellow "<[^= ]*>" "\"(\\.|[^\\"])*\""
# color brightblue "//.*"
# color brightblue start="/\*" end="\*/"