2c964cb38a638fc0fe57963c38c0f3a0f0e5a44e
[gnulib.git] / ChangeLog
1 2002-12-24  Bruno Haible  <bruno@clisp.org>
2
3         * MODULES.txt: Update according to m4/ changes.
4
5         Module gettext.
6         * config.rpath: New file, from gettext-0.11.5.
7
8         * modules/*: New module descriptions.
9         * gnulib-tool: New file.
10         * MODULES.html.sh: New file.
11
12 2002-11-01  Bruno Haible  <bruno@clisp.org>
13
14         * configure.in: Add AC_CONFIG_AUX_DIR call.
15         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
16         test/Makefile.
17         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
18
19 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
20
21         * regex.c (PATFETCH): Remove the translating fetch.
22         (PATFETCH_RAW): Rename to PATFETCH.
23         (set_image_of_range): New fun.
24         (SET_RANGE_TABLE_WORK_AREA): Use it.
25         (regex_compile): Don't translate the pattern chars so eagerly.
26         Only do it when inserting an `exactn' bytecode or when handling
27         a char-range.
28         (mutually_exclusive_p): Avoid empty statement.
29
30 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
31
32         * README: New file
33         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
34         (per RMS's instructions, this is now the canonical source)
35         * lgpl/, gpl/: New directories.
36
37 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
38
39         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
40         as if it was a `charset'.
41
42 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
43
44         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
45         (regex_compile): Catch bogus \(\1\).
46
47 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
48
49         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
50         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
51         Giving in to popular pressure to shut up the compiler with casts.
52
53 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
54
55         * regex.c: More `unsigned char' -> `re_char' changes.
56         Also change several `int' into `re_wchar_t'.
57         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
58         (PUSH_FAILURE_POINTER): Don't cast any more.
59         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
60         We want GCC to complain, since this piece of code makes
61         re_match non-reentrant, which *should* be fixed.
62         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
63         (EXTEND_BUFFER): Use RETALLOC.
64         (SET_LIST_BIT): Don't cast.
65         (re_wchar_t): New type.
66         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
67         that those two functions will always properly return.
68         (IMMEDIATE_QUIT_CHECK): Cast to void.
69         (analyse_first): Use recursion rather than an explicit stack.
70         (re_compile_fastmap): Can't fail anymore.
71         (re_search_2): Don't check re_compile_fastmap for failure.
72         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
73         Now also sets the new value (passed in a new argument).
74         (re_match_2_internal): Use it.
75         Also, use a new var `reg' of type size_t when looping through regs
76         rather than reuse the inappropriate `mcnt'.
77
78 2000-10-24  Andrew Innes  <andrewi@gnu.org>
79
80         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
81         NT-Emacs only.
82         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
83         so that re_search functions only quit when callers expect them to.
84
85 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
86
87         * regex.c (regex_compile): Change the way of handling a range from
88         a char less than 256 to a char not less than 256.
89
90 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
91
92         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
93