mirror of git://git.sv.gnu.org/nano.git
- 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
This commit is contained in:
parent
515ba32513
commit
3f9c3bf10b
|
@ -116,6 +116,9 @@ CVS code -
|
||||||
- nanorc.sample:
|
- nanorc.sample:
|
||||||
- Fix the c-file regex for all caps words to be extended regex
|
- Fix the c-file regex for all caps words to be extended regex
|
||||||
format ({} instead of \{\}) (found by DLR).
|
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:
|
- utils.c:
|
||||||
charalloc()
|
charalloc()
|
||||||
- Switch from using calloc() to using malloc(). (David
|
- Switch from using calloc() to using malloc(). (David
|
||||||
|
|
|
@ -102,7 +102,7 @@
|
||||||
# because syntax highlighting rules will be applied in the order they are
|
# because syntax highlighting rules will be applied in the order they are
|
||||||
# read in
|
# read in
|
||||||
|
|
||||||
# color brightyellow "<[^= ]*>" "\"[^"]*\""
|
# color brightyellow "<[^= ]*>" "\"(\\.|[^\\"])*\""
|
||||||
# color brightblue "//.*"
|
# color brightblue "//.*"
|
||||||
# color brightblue start="/\*" end="\*/"
|
# color brightblue start="/\*" end="\*/"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue