[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
grep branch, master, updated. v2.6.3-54-gb464ff9
From: |
Jim Meyering |
Subject: |
grep branch, master, updated. v2.6.3-54-gb464ff9 |
Date: |
Mon, 19 Apr 2010 20:35:26 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".
The branch, master has been updated
via b464ff9368acc72fdbe4cb749786028e78a66299 (commit)
from 529986f02d5aaad7653214645658cb62e911ae58 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=b464ff9368acc72fdbe4cb749786028e78a66299
commit b464ff9368acc72fdbe4cb749786028e78a66299
Author: Jim Meyering <address@hidden>
Date: Mon Apr 19 22:35:22 2010 +0200
maint: avoid syntax-check failure due to indentation via TABs
* src/dfa.c (atom): Expand TABs in indentation.
diff --git a/src/dfa.c b/src/dfa.c
index 34be712..7d39e5c 100644
--- a/src/dfa.c
+++ b/src/dfa.c
@@ -1569,23 +1569,23 @@ atom (void)
else if (tok == ANYCHAR && using_utf8())
{
/* For UTF-8 expand the period to a series of CSETs that define a valid
- UTF-8 character. This avoids using the slow multibyte path. I'm
- pretty sure it would be both profitable and correct to do it for
- any encoding; however, the optimization must be done manually as
- it is done above in add_utf8_anychar. So, let's start with
- UTF-8: it is the most used, and the structure of the encoding
- makes the correctness more obvious. */
+ UTF-8 character. This avoids using the slow multibyte path. I'm
+ pretty sure it would be both profitable and correct to do it for
+ any encoding; however, the optimization must be done manually as
+ it is done above in add_utf8_anychar. So, let's start with
+ UTF-8: it is the most used, and the structure of the encoding
+ makes the correctness more obvious. */
add_utf8_anychar();
tok = lex();
}
#endif /* MBS_SUPPORT */
else if ((tok >= 0 && tok < NOTCHAR) || tok >= CSET || tok == BACKREF
- || tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
+ || tok == BEGLINE || tok == ENDLINE || tok == BEGWORD
#if MBS_SUPPORT
- || tok == ANYCHAR || tok == MBCSET
+ || tok == ANYCHAR || tok == MBCSET
#endif /* MBS_SUPPORT */
- || tok == ENDWORD || tok == LIMWORD || tok == NOTLIMWORD)
+ || tok == ENDWORD || tok == LIMWORD || tok == NOTLIMWORD)
{
addtok(tok);
tok = lex();
-----------------------------------------------------------------------
Summary of changes:
src/dfa.c | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
hooks/post-receive
--
grep
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- grep branch, master, updated. v2.6.3-54-gb464ff9,
Jim Meyering <=