]> git.wh0rd.org Git - nano.git/commitdiff
2009-12-03 Eitan Adler <eitanadlerlist@gmail.com>
authorChris Allegretta <chrisa@asty.org>
Fri, 4 Dec 2009 03:46:04 +0000 (03:46 +0000)
committerChris Allegretta <chrisa@asty.org>
Fri, 4 Dec 2009 03:46:04 +0000 (03:46 +0000)
        * doc/syntax/makefile.nanorc - Fix poor regex for all alpha characters which sometimes leads to
          error messages, reported by gibboris@gmail.com.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4457 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/syntax/makefile.nanorc

index 14892fdbb135c23dfc7af19c66edcde7eabdfd6e..380b5c20b6110e4b79601aaf7e4853460a010407 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-03 Eitan Adler <eitanadlerlist@gmail.com>
+       * doc/syntax/makefile.nanorc - Fix poor regex for all alpha characters which sometimes leads to
+         error messages, reported by gibboris@gmail.com.
+
 2009-12-02 Chris Allegretta <chrisa@asty.org>
        * text.c (add_undo, do_undo, do_redo) - Do not execute cases for SPLIT when DISABLE_WRAPPING
          is defined.  Fixes Savannah bug 28151 (anon).
index 7b639dde5f2469550c66eefd948e892ae505cf55..93a1e76d9c132a650819bef3e776fac4d2a89e81 100644 (file)
@@ -3,6 +3,6 @@
 syntax "makefile" "Makefile[^/]*$"
 color red "[:=]"
 color magenta "\<(if|ifeq|else|endif)\>"
-color blue "\$+[{(][a-Z0-9_-]+[})]"
+color blue "\$+[{(][a-zA-Z0-9_-]+[})]"
 color brightblue "^[^  ]+:"
 color green "#.*$"