From 96466166f1c01596a4485ebb55cc07a054101a0f Mon Sep 17 00:00:00 2001 From: Chris Allegretta Date: Fri, 4 Dec 2009 03:46:04 +0000 Subject: [PATCH] 2009-12-03 Eitan Adler * 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 | 4 ++++ doc/syntax/makefile.nanorc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 14892fdb..380b5c20 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-12-03 Eitan Adler + * 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 * 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 index 7b639dde..93a1e76d 100644 --- 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 "#.*$" -- 2.39.5