nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 96466166f1c01596a4485ebb55cc07a054101a0f
parent 671b2d974c4040ca65d47c08d265a077aa5de7cc
Author: Chris Allegretta <chrisa@asty.org>
Date:   Fri,  4 Dec 2009 03:46:04 +0000

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.



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

Diffstat:
MChangeLog | 4++++
Mdoc/syntax/makefile.nanorc | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git 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). diff --git a/doc/syntax/makefile.nanorc b/doc/syntax/makefile.nanorc @@ -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 "#.*$"