Add module descriptions.
[pspp] / ChangeLog
1 2003-01-11  Bruno Haible  <bruno@clisp.org>
2
3         * modules/*: Add a description.
4         * modules/strpbrk: Fix Makefile.am snippet.
5         * modules/strtoimax: Fix dependencies.
6         * modules/strtoumax: Likewise.
7
8 2003-01-11  Bruno Haible  <bruno@clisp.org>
9
10         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
11         * modules/alloca (Makefile.am): All object files depend on alloca.h.
12         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
13
14 2003-01-12  Paul Eggert  <eggert@twinsun.com>
15
16         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
17         to avoid collisions with libcurses and libreadline.
18         * getstr: Remove.
19         * MODULES.html.sh: Remove getstr.
20         * modules/getline: Depend on unlocked-io, not getstr.
21
22 2003-01-10  Bruno Haible  <bruno@clisp.org>
23
24         * modules/alloca: Change Makefile.am requirements. Simplify Include
25         requirements. Add lib/alloca_.h to file list.
26
27 2003-01-09  Bruno Haible  <bruno@clisp.org>
28
29         * modules/stdbool: Change configure.ac, Makefile.am requirements.
30         Simplify Include requirements. Add lib/stdbool.h.in to file list.
31
32 2003-01-09  Bruno Haible  <bruno@clisp.org>
33
34         * gnulib-tool (func_all_modules): Ignore files ending in ~.
35         * MODULES.html.sh: Likewise.
36
37 2003-01-09    <karl@gnu.org>
38
39         * MODULES.html.sh: include `dirname $0` in PATH, to find
40         gnulib-tool.
41
42 2003-01-08  Bruno Haible  <bruno@clisp.org>
43
44         * modules/full-read: Depend on full-write.
45
46 2003-01-07  Bruno Haible  <bruno@clisp.org>
47
48         * MODULES.html.sh: Add copyright notice.
49         (missed_files): Omit CVS directory entries.
50         (func_module): Make it work with sed-3.02.
51         * MODULES.txt: Remove file.
52
53 2003-01-01    <karl@gnu.org>
54
55         * gnulib-tool (func_verify_module): report module name $module in
56         error message, not $1.
57         * gnulib-tool (create-testdir): don't complain if destdir couldn't
58         be created, only if it doesn't exist.
59         * gnulib-tool (last_checkin_date): don't expand the $Date here.
60
61 2002-12-24  Bruno Haible  <bruno@clisp.org>
62
63         * MODULES.txt: Update according to m4/ changes.
64
65         Module gettext.
66         * config.rpath: New file, from gettext-0.11.5.
67
68         * modules/*: New module descriptions.
69         * gnulib-tool: New file.
70         * MODULES.html.sh: New file.
71
72 2002-11-01  Bruno Haible  <bruno@clisp.org>
73
74         * configure.in: Add AC_CONFIG_AUX_DIR call.
75         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
76         test/Makefile.
77         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
78
79 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
80
81         * regex.c (PATFETCH): Remove the translating fetch.
82         (PATFETCH_RAW): Rename to PATFETCH.
83         (set_image_of_range): New fun.
84         (SET_RANGE_TABLE_WORK_AREA): Use it.
85         (regex_compile): Don't translate the pattern chars so eagerly.
86         Only do it when inserting an `exactn' bytecode or when handling
87         a char-range.
88         (mutually_exclusive_p): Avoid empty statement.
89
90 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
91
92         * README: New file
93         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
94         (per RMS's instructions, this is now the canonical source)
95         * lgpl/, gpl/: New directories.
96
97 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
98
99         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
100         as if it was a `charset'.
101
102 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
103
104         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
105         (regex_compile): Catch bogus \(\1\).
106
107 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
108
109         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
110         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
111         Giving in to popular pressure to shut up the compiler with casts.
112
113 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
114
115         * regex.c: More `unsigned char' -> `re_char' changes.
116         Also change several `int' into `re_wchar_t'.
117         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
118         (PUSH_FAILURE_POINTER): Don't cast any more.
119         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
120         We want GCC to complain, since this piece of code makes
121         re_match non-reentrant, which *should* be fixed.
122         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
123         (EXTEND_BUFFER): Use RETALLOC.
124         (SET_LIST_BIT): Don't cast.
125         (re_wchar_t): New type.
126         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
127         that those two functions will always properly return.
128         (IMMEDIATE_QUIT_CHECK): Cast to void.
129         (analyse_first): Use recursion rather than an explicit stack.
130         (re_compile_fastmap): Can't fail anymore.
131         (re_search_2): Don't check re_compile_fastmap for failure.
132         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
133         Now also sets the new value (passed in a new argument).
134         (re_match_2_internal): Use it.
135         Also, use a new var `reg' of type size_t when looping through regs
136         rather than reuse the inappropriate `mcnt'.
137
138 2000-10-24  Andrew Innes  <andrewi@gnu.org>
139
140         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
141         NT-Emacs only.
142         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
143         so that re_search functions only quit when callers expect them to.
144
145 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
146
147         * regex.c (regex_compile): Change the way of handling a range from
148         a char less than 256 to a char not less than 256.
149
150 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
151
152         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
153