Commit 3f9c3bf1 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

- Add a better string matching sequence that includes escaped quotes (thanks...

- 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
No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
...@@ -116,6 +116,9 @@ CVS code - ...@@ -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 @@ ...@@ -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="\*/"
......
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