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