*** empty log message ***
[bpt/guile.git] / libguile / ChangeLog
1 Thu Jan 6 11:22:53 2000 Greg J. Badros <gjb@cs.washington.edu>
2
3 * Makefile.am (ETAGS_ARGS): Switch to SCM_DEFINE, SCM_DEFINE1
4 instead of GUILE_PROC.
5
6 Thu Jan 6 11:21:49 2000 Greg J. Badros <gjb@cs.washington.edu>
7
8 * alist.c: Do not report mismatch errors on some uses of `tmp' (do
9 this by using SCM_ARG2 instead of `2' in the SCM_VALIDATE_CONS
10 macro call.
11
12 Thu Jan 6 09:54:33 2000 Dirk Herrmann <dirk@ida.ing.tu-bs.de> --gjb applied
13
14 * scm_validate.h: Remove some redundant NIMP tests.
15
16 * alist.c: minimize scope of the tmp variables, and initialize
17 them when declared. The strange SCM_NIMP tests are replaced by
18 SCM_CONSP tests that more closely reflect the intended semantics.
19 However, we don't get a performance penalty here, because the
20 SCM_CONSP test was performed by the ALISTCELL test anyway. * The
21 extremely ugly use of ASRTGO macros was removed: The calls to
22 ASRTGO were not encapsulated by "#ifndef SCM_RECKLESS", but got a
23 label parameter that only exists when SCM_RECKLESS is not defined.
24 This works, because ASRTGO itself is defined in a way that it only
25 makes use of the label parameter if SCM_RECKLESS is not defined
26 (shudder!). Does guile make at all use of the possibility to
27 define SCM_RECKLESS? * Codesize is likely to be reduced, since
28 instead of two calls to SCM_ASSERT performed by the ALISTCELL test
29 we now only get one test.
30
31 * list.c: Use SCM_NNULLP, not SCM_NIMP as appropriate. Also use
32 SCM_NULLP instead of SCM_IMP. Drop use of "register" keyword on
33 some variables in `list?'. Fix `reverse' and `reverse!'
34 primitives to handle improper lists better.
35
36 Wed Jan 5 11:24:53 2000 Greg J. Badros <gjb@cs.washington.edu>
37
38 * *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
39 macros and SCM_DEFINE macros to match GNU coding standards.
40
41 Wed Jan 5 11:04:24 2000 Greg J. Badros <gjb@cs.washington.edu>
42
43 * *.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
44
45 Wed Jan 5 10:59:06 2000 Greg J. Badros <gjb@cs.washington.edu>
46
47 * *.[ch]: Replace SCM_VALIDATE_INT w/ SCM_VALIDATE_INUM for
48 better consistency with the names of other SCM_VALIDATE_ macros
49 and better conformance to guile naming policy.
50
51 Wed Jan 5 10:50:39 2000 Greg J. Badros <gjb@cs.washington.edu>
52
53 * ports.c (s_scm_close_all_ports_except): Use SCM_ARG1 in a
54 SCM_VALIDATE instead of 1 to avoid a check on the argument (since
55 it's not the actual name of the formal).
56
57 * guile-snarf.awk.in: Do argument/number mismatch checking and
58 print warnings in an Emacs compile-mode parseable format.
59
60 * struct.c: Use SCM_ASSERT_RANGE instead of SCM_ASSERT w/
61 SCM_OUTOFRANGE as 3rd argument.
62
63 * random.c: Fix argument/number mismatch (that I introduced :-( ).
64
65 * __scm.h: Do not #define SCM_ARG* when snarfing;
66 lets us distinguish between 1 and SCM_ARG1 when snarfing as only
67 the former (using the number) requires the argument to match the
68 formal in the current argument snarfing check.
69
70 * snarf.h: Give new definition of SCM_ASSERT when in
71 snarfing mode to output a lexically-identifiable sequence that the
72 guile-snarf.awk script uses to verify argument/position matching.
73
74 * ramap.c: Remove extraneous #undef FUNC_NAME.
75
76 Wed Jan 5 08:36:38 2000 Greg J. Badros <gjb@cs.washington.edu>
77
78 * guile-doc-snarf.awk.in: Removed -- guile-snarf.awk.in is the
79 current version of the same functionality; it writes the .x output
80 to stdout instead of directly into the file.
81
82 Wed Jan 5 08:15:04 2000 Greg J. Badros <gjb@cs.washington.edu>
83
84 * unif.c, symbols.c, strings.c, stacks.c, random.c, print.c,
85 posix.c: Eliminated a bunch of SCM_NIMP(..)s that are now
86 redundant with the safer macros. Patch from Dirk Hermann applied
87 by hand. Thanks Dirk!
88
89 * scm_validate.h: Added SCM_VALIDATE_VECTOR_OR_DVECTOR for some
90 uses in random.c.
91
92 * ramap.c: whitespace change.
93
94 Tue Jan 4 14:21:35 2000 Greg J. Badros <gjb@cs.washington.edu>
95
96 * options.c, objects.c, keywords.c, gc.c: Some redundant SCM_NIMP
97 removals from Dirk Hermann.
98
99 * alist.c: Rename formals to match the parameter names in the
100 documentation, updates to documentation. Thanks Dirk Hermann!
101
102 2000-01-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
103
104 * eval.c (SCM_CEVAL): Reverse order of
105 scm_stack_checking_enabled_p and SCM_STACK_OVERFLOW_P
106 (Thanks to Brad Knotwell.)
107
108 Mon Jan 3 08:30:02 2000 Greg Harvey <Greg.Harvey@thezone.net> (applied --01/03/00 gjb)
109
110 * gc.c (scm_debug_newcell): Added SCM_SETCAR of the newly
111 allocated cell.
112
113 * pairs.h: Added a comment about the need for the SCM_SETCAR in
114 SCM_NEWCELL macro.
115
116 Mon Jan 3 08:25:19 2000 Greg J. Badros <gjb@cs.washington.edu>
117
118 * dynl-vms.c, debug.c, coop-threads.c, backtrace.c, eval.c: More
119 SCM_NIMP tests that were redundant are now eliminated. Patches
120 from Dirk Hermann applied by hand.
121
122 The ChangeLog continues in the file: "ChangeLog-1996-1999"