HACKING: I've updated it a bit to reflect the need to run autogen.sh,
[bpt/guile.git] / libguile / ChangeLog
CommitLineData
88ec97ad
GB
1Thu Jan 20 13:00:38 2000 Greg J. Badros <gjb@cs.washington.edu>
2
3 * Makefile.in: Removed, this is auto-generated.
4
078e9092
GB
5Thu Jan 20 11:33:47 2000 Dirk Hermann <dirk@ida.ing.tu-bs.de> --applied 01/20/00 gjb
6
7 * list.c: Put some variable initialization code at the point of
8 declaration; Added a comment for list*; Formatting changes.
9
10 * load.c: use SCM_NNULLP to make sure the end of a list is not
11 reached yet.
12
e7a96050
MD
132000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
14
a177af34
MD
15 * backtrace.c (scm_display_error_message): Bugfix: Don't use
16 result of scm_list_p as C boolean.
17 (scm_display_error_message, scm_set_print_params_x): Use new
18 validation macros. (Thanks to Dirk Herrmann.)
19
d06bcb02
MD
20 * net_db.c (scm_resolv_error): Cast result from hstrerror.
21
22 * strports.c (st_end_input): Inserted parenthesis to get operator
23 grouping correct.
24
25 * list.h (scm_init_list): Removed SCM_P around prototypes.
26
27 * fports.c, list.c, numbers.c, ports.c, stime.c, symbols.c,
28 filesys.c, posix.c: Converted docstrings to ANSI C format and
e7a96050
MD
29 escaped " occurring inside string literals.
30
682eefe9
MD
31Tue Jan 18 13:21:08 2000 Mikael Djurfeldt <mdj@r11n07-s.pdc.kth.se>
32
33 * posix.c (scm_mknod): Escape " occuring inside docstring.
34
56cfe22b
MD
352000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
36
37 * alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
38 evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
39 keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
40 objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
41 ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
42 stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
43 symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
44 weaks.c: Converted docstrings to ANSI C format.
45
46 * filesys.c (scm_chmod), simpos.c (scm_system), version
47 (scm_version), vports (scm_make_soft_port): Escape " occuring
48 inside docstring.
49
fcb1720f
GB
50Mon Jan 17 11:41:22 2000 Greg J. Badros <gjb@cs.washington.edu>
51
52 * scm_validate.h: Added SCM_VALIDATE_ULONG_COPY,
53 SCM_VALIDATE_LONG_COPY
54
55 * numbers.c: Use SCM_VALIDATE_ULONG_COPY, instead of
56 SCM_VALIDATE_INUM_COPY to let bigger numbers be used. Rename a
57 couple of formal arguments (and fix their uses) to make arguments
58 match the documentation.
59
b9af3d0e
MS
602000-01-14 <mstachow@alum.mit.edu>
61
62 * Makefile.am: Augment path when running guile-doc-snarf so
63 guile-func-name-check is found.
64
153511a7
GB
65Fri Jan 14 09:34:55 2000 Greg J. Badros <gjb@cs.washington.edu>
66
67 * scm_validate.h (SCM_NUM2LONG_DEF): Fix this macro to just use
68 def, not SCM_MAKINUM(def); thanks Janis Bzerins!
69
59d5245f
GB
70Wed Jan 12 00:06:53 2000 Greg J. Badros <gjb@cs.washington.edu>
71
72 * net_db.c (s_scm_inet_makeaddr): Use SCM_NUM2ULONG since that's
73 the way guile-1.3.4 worked, but #if 0 out the version using
74 SCM_VALIDATE_INUM_COPY for stricter testing.
75
95aec69f
GB
76Tue Jan 11 18:24:18 2000 Greg J. Badros <gjb@cs.washington.edu>
77
78 * guile-doc-snarf.in: Use new $fullfilename for running
79 guile-func-name-check, and put "$fullfilename" and "$filename" in
80 quotes at uses to make sure re-splitting on whitespace does not
81 occur (so filenames w/ embedded whitespace would work okay, though
82 I sure hope we never have to deal with that! :-) ). Thanks to
83 Mikael for pointing out the source_dir != build_dir was broken.
84
b7ac2837
GB
85Tue Jan 11 17:42:40 2000 Greg J. Badros <gjb@cs.washington.edu>
86
87 * scm_validate.h: Added SCM_NUM2LONG_DEF macro. Make
88 SCM_OUT_OF_RANGE use SCM_MAKINUM, not scm_long2num. Added
89 SCM_COERCE_ROSTRING macro. Added SCM_VALIDATE_NONEMPTYLIST
90 macro. Fix SCM_VALIDATE_STRINGORSUBSTR macro to not use SLOPPY
91 variants.
92
93 * ports.c (scm_port_closed_p): Validate that the arg is a PORT,
94 then return whether it's an open port (was validating that it was
95 an open port -- this was a bug I introduced back in December, but
96 my careful reading of diffs caught it).
97
98 * numbers.c: Recombine the two conditional-compilation paths for
99 all the log* primitives -- they were split based on #ifndef
100 scm_long2num; factored out a SCM_LOGOP_RETURN macro, and fixed
101 some bugs and inconsistencies in the two sets of implementations.
102 (scm_lognot) Fixed *atrocious* re-use of a SCM as an integer!
103
104 * ioext.c: Use SCM_ASSERT_RANGE in a couple places, and
105 SCM_VALIDATE_INUM_COPY once where it should've been used.
106
107 * fluids.c (scm_internal_with_fluids): Use
108 SCM_VALIDATE_LIST_COPYLEN.
109
110 * filesys.c: Use SCM_NUM2LONG instead of SCM_VALIDATE_INUM_COPY;
111 this is questionable as it relaxes type safety, but other changes
112 were useful and all SCM_NUM2LONG's should probably be
113 revisited. Use SCM_OUT_OF_RANGE, SCM_WRONG_TYPE_ARG.
114
115 * evalext.c: line-break change on 1 line.
116
117 * eval.c (nconc2last): Takes a non-empty list as its first
118 argument, not just a list.
119
120 * dynl.c: Use new SCM_COERCE_ROSTRING macro.
121
122Tue Jan 11 15:44:23 2000 Greg J. Badros <gjb@cs.washington.edu>
123
124 * dynl.c, feature.c, filesys.c, fports.c, list.c, load.c,
125 net_db.c, sort.c, stacks.c, unif.c: Use SCM_WTA, SCM_MISC_ERROR
126 where possible.
127
128 * symbols.c (scm_sysintern0): Fixed the function name in a
129 scm_misc_error invocation.
130
131 * print.c (scm_simple_format): Do not need SCM_COERCE_SUBSTR, and
132 use scm_return_first to ward off latent GC bug that Mikael caught.
133
134 * async.c: Use SCM_VALIDATE_ASYNC_COPY one place where it wasn't
135 used before but should've been.
136
d61f6b02
MD
1372000-01-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
138
139 * snarf.h (SCM_PROC1): Replaced SCM (*) (...) with
140 SCM_FUNC_CAST_ARBITRARY_ARGS.
141
88423ab1
GB
142Tue Jan 11 13:44:07 2000 Greg J. Badros <gjb@cs.washington.edu>
143
144 * guile-func-name-check.in: Added this script to statically check
145 #define FUNC_NAME, #undef FUNC_NAME in the source.
146
147 * sort.c, posix.c: Fix #undef FUNC_NAME lines to not have trailing
148 redundant comment, semicolon; caught by new guile-func-name-check
149 script.
150
151 * debug.c: Fix mistaken #define FUNC_NAME for scm_make_iloc.
152 Caught by new guile-func-name-check-script.
153
154 * Makefile.am: Added guile-func-name-check to bin_SCRIPTS
155
156 * ramap.c: Fix #if 0'd out code to be syntactically acceptable to
157 guile-func-name-check.
158
159 * guile-doc-snarf.in: Run guile-func-name-check on the file before
160 doing the snarf.
161
7f15e635
GB
162Tue Jan 11 11:31:10 2000 Greg J. Badros <gjb@cs.washington.edu>
163
164 * fports.c, ports.c, ports.h, strports.c, vports.c: Make write
165 port function take const void*, not void*.
166
bf121b59
GB
167Tue Jan 11 11:18:07 2000 Greg J. Badros <gjb@cs.washington.edu>
168
169 * scm_validate.h, chars.c, ports.c, print.c, read.c, strings.c,
170 strop.c: Use SCM_VALIDATE_ICHR, SCM_VALIDATE_ICHR_COPY instead of
171 SCM_VALIDATE_CHAR, SCM_VALIDATE_CHAR_COPY. Change made for
172 consistency with the other macros dealing with immediate
173 characters. (Similar to INT -> INUM change a week or so ago).
174
7965d98f
GB
175Tue Jan 11 10:41:46 2000 Greg J. Badros <gjb@cs.washington.edu>
176
177 * dynl.c, error.c, eval.c, feature.c, filesys.c, fports.c, list.c, load.c,
178 net_db.c, read.c, socket.c: Update error messages to use ~A for
179 %s, ~S for %S to work with new `simple-format' format and be
180 standardized better.
181
182 * print.h, print.c (scm_simple_format): Added `simple-format'
183 primitive. It's the old scm_display_error, with ARGS now a rest
184 parameter, and the destination first instead of last (and a couple
185 new capabilities inspired by `format' -- #t as destination means
186 current-output-port, #f means return the formatted text as a
187 string.
188
189 * gh.h, gh_data.c, ports.h, ports.c: Added some missing const specifications.
190
191 * backtrace.c (scm_display_error_message): Rewrote to use
192 scm_simple_format() procedure.
193
194 * __scm.h: Added commented-out #define of GUILE_DEBUG_FREELIST
195
f73d2411
MV
1962000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
197
198 Finally applied the libltdl patch from Thomas Tanner, with slight
199 modifications.
200
201 * DYNAMIC-LINKING: Removed because it is obsolete.
202 * dynl.c: Use ANSI prototypes.
203 (sysdep_dynl_link): Use lt_dlopenext instead of lt_dlopen.
204 * scmconfig.h.in: Do not change, as it is automatically generated.
205
206 1999-07-25 Thomas Tanner <tanner@ffii.org>
207
208 * dynl-dl.c, dynl-dld.c, dynl-shl.c, dynl-vms.c: deleted
209 (obsolete)
210 * Makefile.am: likewise, add INCLTDL (libltdl headers) to
211 INCLUDES, set dlpreopened files in LDFLAGS, link libguile
212 against libltdl
213 * dynl.c: use libltdl if DYNAMIC_LINKING is enabled,
214 * guile.c: register preloaded modules
215 * scmconfig.h.in: remove obsolete symbols
216
38c1d3c4
GH
2172000-01-09 Gary Houston <ghouston@arglist.com>
218
219 * These changes should make it unnecessary to call tzset from
220 Scheme after modifying the TZ environment variable, even if the
221 system date facilities cache the value.
222 * stime.c (setzone, scm_localtime): added comments.
223 (tzset): don't define a noop tzset macro if HAVE_TZSET not defined.
224 (setzone): don't call tzset.
225 (restorezone): call tzset only if HAVE_TZSET is defined.
226 (scm_tzset): don't define if HAVE_TZSET not defined. Change the
227 doc string to indicate that this procedure isn't likely to do
228 anything useful.
229 (scm_localtime, scm_strftime, scm_mktime): call tzset if
230 LOCALTIME_CACHE is defined.
231
9359d657
MD
2322000-01-09 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
233
234 * posix.c (scm_sync): Return SCM_UNSPECIFIED.
235
f25f761d
GH
2362000-01-09 Gary Houston <ghouston@arglist.com>
237
238 * eval.c: define scm_unbound_variable_key ('unbound-variable).
239 scm_lookupcar1: throw an error with key 'unbound-variable instead
240 of 'misc-error when an unbound variable is encountered.
241
242 * filesys.c (scm_mkdir, scm_rmdir, scm_getcwd, scm_select,
243 scm_symlink, scm_readlink, scm_lstat),
244 posix.c (scm_setpgid, scm_setsid, scm_ctermid, scm_tcgetpgrp,
245 scm_tcsetpgrp, scm_uname, scm_setlocale, scm_mknod, scm_nice,
246 scm_sync),
247 simpos.c (scm_system),
248 stime.c (scm_times, scm_strptime):
249 move the HAVE_XXX feature tests out of the procedure bodies.
250 don't use SCM_SYSMISSING.
251 scm_validate.h (SCM_SYSMISSING): removed.
252 error.h, error.c (scm_sysmissing): comment that this is deprecated.
253 see ChangeLog entry for 1999-12-28.
254
a4dd2611
GB
255Sat Jan 8 19:52:04 2000 Greg J. Badros <gjb@cs.washington.edu>
256
257 * scm_validate.h (SCM_VALIDATE_BOOL_COPY): Fix typo.
258
259Sat Jan 8 17:06:46 2000 Greg J. Badros <gjb@cs.washington.edu>
260
261 * backtrace.c: Fix spelling typo in a comment.
262
263 * snarf.h: Use new SCM_DOCS macro to encapsulate the non SCM_INIT
264 text. Reformatted some of the expansions.
265
5ac36451
GB
266Fri Jan 7 15:50:46 2000 Greg J. Badros <gjb@cs.washington.edu>
267
268 * scm_validate.h (SCM_OUT_OF_RANGE): Use scm_out_of_range_pos to
269 report the position of the argument.
270
271 * error.h, error.c (scm_out_of_range_pos): Added this function to
272 take extra "pos" argument, the position number of the errant
273 argument.
274
275 * debug.c: Use SCM_OUT_OF_RANGE instead of scm_out_of_range.
276
277 * snarf.h: Use SCM_HERE and SCM_INIT as names, not SCM_NOTSNARF
278 and SCM_SNARFING. Also put the %%% in the SCM_INIT since Mikael
279 prefers that and I'm reasonably indifferent.
280
281Fri Jan 7 15:03:32 2000 Greg J. Badros <gjb@cs.washington.edu>
282
283 * snarf.h: Factor out differences between C++ and non-C++ into
284 SCM_FUNC_CAST_ARBITRARY_ARGS macro. Modify all the snarf macro
285 definitions to use SCM_NOTSNARF and SCM_SNARFING macros (like
286 Mikael's macros, below, but changed names and SCM_SNARFING no
287 longer expands to include %%% -- that must appear in the argument
288 so that the token appears at the call-site as a reminder).
289
088bb1d4
MD
2902000-01-07 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
291
292 * snarf.h (SCM_INSITU, SCM_INIT): New snarf macros for use in user
293 snarf macro definitions.
294
636480e6
MD
2952000-01-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
296
297 * chars.c (scm_integer_to_char): Use Greg's nice
298 SCM_VALIDATE_INUM_RANGE macro for argument checking for closer
299 adherence to R5RS.
300
7c5628e2
GB
301Thu Jan 6 11:48:49 2000 Greg J. Badros <gjb@cs.washington.edu>
302
303 * *.c, snarf.h: Replace GUILE_PROC1 with SCM_DEFINE1 throughout.
304
2cc0f8cb
GB
305Thu Jan 6 11:22:53 2000 Greg J. Badros <gjb@cs.washington.edu>
306
307 * Makefile.am (ETAGS_ARGS): Switch to SCM_DEFINE, SCM_DEFINE1
308 instead of GUILE_PROC.
309
310Thu Jan 6 11:21:49 2000 Greg J. Badros <gjb@cs.washington.edu>
311
312 * alist.c: Do not report mismatch errors on some uses of `tmp' (do
313 this by using SCM_ARG2 instead of `2' in the SCM_VALIDATE_CONS
314 macro call.
315
9179dcdd
GB
316Thu Jan 6 09:54:33 2000 Dirk Herrmann <dirk@ida.ing.tu-bs.de> --gjb applied
317
318 * scm_validate.h: Remove some redundant NIMP tests.
319
320 * alist.c: minimize scope of the tmp variables, and initialize
321 them when declared. The strange SCM_NIMP tests are replaced by
322 SCM_CONSP tests that more closely reflect the intended semantics.
323 However, we don't get a performance penalty here, because the
324 SCM_CONSP test was performed by the ALISTCELL test anyway. * The
325 extremely ugly use of ASRTGO macros was removed: The calls to
326 ASRTGO were not encapsulated by "#ifndef SCM_RECKLESS", but got a
327 label parameter that only exists when SCM_RECKLESS is not defined.
328 This works, because ASRTGO itself is defined in a way that it only
329 makes use of the label parameter if SCM_RECKLESS is not defined
330 (shudder!). Does guile make at all use of the possibility to
331 define SCM_RECKLESS? * Codesize is likely to be reduced, since
332 instead of two calls to SCM_ASSERT performed by the ALISTCELL test
333 we now only get one test.
334
335 * list.c: Use SCM_NNULLP, not SCM_NIMP as appropriate. Also use
336 SCM_NULLP instead of SCM_IMP. Drop use of "register" keyword on
337 some variables in `list?'. Fix `reverse' and `reverse!'
338 primitives to handle improper lists better.
339
15b33280
GB
340Wed Jan 5 11:24:53 2000 Greg J. Badros <gjb@cs.washington.edu>
341
342 * *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
343 macros and SCM_DEFINE macros to match GNU coding standards.
344
ca8cd130
GB
345Wed Jan 5 11:04:24 2000 Greg J. Badros <gjb@cs.washington.edu>
346
347 * *.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
348
fb764465
GB
349Wed Jan 5 10:59:06 2000 Greg J. Badros <gjb@cs.washington.edu>
350
351 * *.[ch]: Replace SCM_VALIDATE_INT w/ SCM_VALIDATE_INUM for
352 better consistency with the names of other SCM_VALIDATE_ macros
353 and better conformance to guile naming policy.
354
355Wed Jan 5 10:50:39 2000 Greg J. Badros <gjb@cs.washington.edu>
356
357 * ports.c (s_scm_close_all_ports_except): Use SCM_ARG1 in a
358 SCM_VALIDATE instead of 1 to avoid a check on the argument (since
359 it's not the actual name of the formal).
1e484823
GB
360
361 * guile-snarf.awk.in: Do argument/number mismatch checking and
362 print warnings in an Emacs compile-mode parseable format.
363
364 * struct.c: Use SCM_ASSERT_RANGE instead of SCM_ASSERT w/
365 SCM_OUTOFRANGE as 3rd argument.
366
367 * random.c: Fix argument/number mismatch (that I introduced :-( ).
368
369 * __scm.h: Do not #define SCM_ARG* when snarfing;
370 lets us distinguish between 1 and SCM_ARG1 when snarfing as only
371 the former (using the number) requires the argument to match the
372 formal in the current argument snarfing check.
373
374 * snarf.h: Give new definition of SCM_ASSERT when in
375 snarfing mode to output a lexically-identifiable sequence that the
376 guile-snarf.awk script uses to verify argument/position matching.
377
378 * ramap.c: Remove extraneous #undef FUNC_NAME.
379
53fc4636
GB
380Wed Jan 5 08:36:38 2000 Greg J. Badros <gjb@cs.washington.edu>
381
382 * guile-doc-snarf.awk.in: Removed -- guile-snarf.awk.in is the
383 current version of the same functionality; it writes the .x output
384 to stdout instead of directly into the file.
385
386Wed Jan 5 08:15:04 2000 Greg J. Badros <gjb@cs.washington.edu>
387
388 * unif.c, symbols.c, strings.c, stacks.c, random.c, print.c,
389 posix.c: Eliminated a bunch of SCM_NIMP(..)s that are now
390 redundant with the safer macros. Patch from Dirk Hermann applied
391 by hand. Thanks Dirk!
392
393 * scm_validate.h: Added SCM_VALIDATE_VECTOR_OR_DVECTOR for some
394 uses in random.c.
395
396 * ramap.c: whitespace change.
397
3b5345d9
GB
398Tue Jan 4 14:21:35 2000 Greg J. Badros <gjb@cs.washington.edu>
399
400 * options.c, objects.c, keywords.c, gc.c: Some redundant SCM_NIMP
401 removals from Dirk Hermann.
402
403 * alist.c: Rename formals to match the parameter names in the
404 documentation, updates to documentation. Thanks Dirk Hermann!
405
169aec65
MD
4062000-01-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
407
db62436e
MD
408 * eval.c (SCM_CEVAL): Reverse order of
409 scm_stack_checking_enabled_p and SCM_STACK_OVERFLOW_P
410 (Thanks to Brad Knotwell.)
169aec65 411
da43d822
GB
412Mon Jan 3 08:30:02 2000 Greg Harvey <Greg.Harvey@thezone.net> (applied --01/03/00 gjb)
413
414 * gc.c (scm_debug_newcell): Added SCM_SETCAR of the newly
415 allocated cell.
416
417 * pairs.h: Added a comment about the need for the SCM_SETCAR in
418 SCM_NEWCELL macro.
419
420Mon Jan 3 08:25:19 2000 Greg J. Badros <gjb@cs.washington.edu>
421
422 * dynl-vms.c, debug.c, coop-threads.c, backtrace.c, eval.c: More
423 SCM_NIMP tests that were redundant are now eliminated. Patches
424 from Dirk Hermann applied by hand.
425
339999c7 426The ChangeLog continues in the file: "ChangeLog-1996-1999"