Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/2.7: 1058_all_glibc-gnulib-regcomp.patch README.history
Date: Sun, 02 Dec 2007 23:17:19
Message-Id: E1Iyy3m-0001Bg-2P@stork.gentoo.org
1 vapier 07/12/02 23:17:14
2
3 Modified: README.history
4 Added: 1058_all_glibc-gnulib-regcomp.patch
5 Log:
6 add fix from upstream gnulib
7
8 Revision Changes Path
9 1.5 src/patchsets/glibc/2.7/README.history
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/README.history?r1=1.4&r2=1.5
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.7/README.history,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- README.history 1 Dec 2007 17:41:26 -0000 1.4
22 +++ README.history 2 Dec 2007 23:17:13 -0000 1.5
23 @@ -1,5 +1,6 @@
24 1.3 [pending]
25 + 1060_all_glibc-signal-timer-fd.patch
26 + + 1065_all_glibc-2.7-nscd-paranoia-segv.patch
27
28 1.2 04.11.2007
29 + 6417_all_sh-glibc-2.7-broken-nptl-lock-macros.patch
30
31
32
33 1.1 src/patchsets/glibc/2.7/1058_all_glibc-gnulib-regcomp.patch
34
35 file : http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/1058_all_glibc-gnulib-regcomp.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewcvs.py/gentoo/src/patchsets/glibc/2.7/1058_all_glibc-gnulib-regcomp.patch?rev=1.1&content-type=text/plain
37
38 Index: 1058_all_glibc-gnulib-regcomp.patch
39 ===================================================================
40 2007-12-01 Jim Meyering <meyering@××××××.com>
41
42 Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
43 * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
44 that would inhibit utf8-optimization of a regexp containing line-
45 or buffer-anchors, e.g., `^', `$'.
46
47 diff --git a/lib/regcomp.c b/lib/regcomp.c
48 index fe4d243..a02418d 100644
49 --- a/posix/regcomp.c
50 +++ b/posix/regcomp.c
51 @@ -1049,7 +1049,7 @@ optimize_utf8 (re_dfa_t *dfa)
52 mb_chars = true;
53 break;
54 case ANCHOR:
55 - switch (dfa->nodes[node].opr.idx)
56 + switch (dfa->nodes[node].opr.ctx_type)
57 {
58 case LINE_FIRST:
59 case LINE_LAST:
60
61
62
63 --
64 gentoo-commits@g.o mailing list