mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
* posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
that would inhibit utf8-optimization of a regexp containing line- or buffer-anchors, e.g., `^', `$'.
This commit is contained in:
parent
f63e506341
commit
77751669d7
@ -1,3 +1,9 @@
|
|||||||
|
2007-12-01 Jim Meyering <meyering@redhat.com>
|
||||||
|
|
||||||
|
* posix/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
|
||||||
|
that would inhibit utf8-optimization of a regexp containing line-
|
||||||
|
or buffer-anchors, e.g., `^', `$'.
|
||||||
|
|
||||||
2007-12-12 Ulrich Drepper <drepper@redhat.com>
|
2007-12-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* time/bug-getdate1.c (do_test): Don't use century values which
|
* time/bug-getdate1.c (do_test): Don't use century values which
|
||||||
|
4
NEWS
4
NEWS
@ -1,4 +1,4 @@
|
|||||||
GNU C Library NEWS -- history of user-visible changes. 2007-12-07
|
GNU C Library NEWS -- history of user-visible changes. 2007-12-12
|
||||||
Copyright (C) 1992-2006, 2007 Free Software Foundation, Inc.
|
Copyright (C) 1992-2006, 2007 Free Software Foundation, Inc.
|
||||||
See the end for copying conditions.
|
See the end for copying conditions.
|
||||||
|
|
||||||
@ -9,7 +9,7 @@ Version 2.8
|
|||||||
|
|
||||||
* New locales: bo_CN, bo_IN.
|
* New locales: bo_CN, bo_IN.
|
||||||
|
|
||||||
* New encoding: HP-ROMAN9.
|
* New encoding: HP-ROMAN9, HP-GREEK8, HP-THAI8, HP-TURKISH8.
|
||||||
|
|
||||||
Version 2.7
|
Version 2.7
|
||||||
|
|
||||||
|
@ -1030,7 +1030,7 @@ optimize_utf8 (re_dfa_t *dfa)
|
|||||||
mb_chars = 1;
|
mb_chars = 1;
|
||||||
break;
|
break;
|
||||||
case ANCHOR:
|
case ANCHOR:
|
||||||
switch (dfa->nodes[node].opr.idx)
|
switch (dfa->nodes[node].opr.ctx_index)
|
||||||
{
|
{
|
||||||
case LINE_FIRST:
|
case LINE_FIRST:
|
||||||
case LINE_LAST:
|
case LINE_LAST:
|
||||||
|
Loading…
Reference in New Issue
Block a user