mit-scheme.git
17 years agoFix bug: list notation doesn't use commas.
Chris Hanson [Wed, 22 Nov 2006 18:02:31 +0000 (18:02 +0000)]
Fix bug: list notation doesn't use commas.

17 years agoMake sure constants are unsigned in string_hash.
Chris Hanson [Wed, 22 Nov 2006 04:36:35 +0000 (04:36 +0000)]
Make sure constants are unsigned in string_hash.

17 years agoAdd MIT and MIT/GNU to cond-expand features.
Chris Hanson [Wed, 15 Nov 2006 00:38:21 +0000 (00:38 +0000)]
Add MIT and MIT/GNU to cond-expand features.

18 years agoChange summary so that "from" field is fixed width and subject fills
Chris Hanson [Fri, 10 Nov 2006 03:04:22 +0000 (03:04 +0000)]
Change summary so that "from" field is fixed width and subject fills
available space.  The old behavior is still available, but no longer
the default.

18 years agoFix thinko in previous change.
Chris Hanson [Thu, 9 Nov 2006 20:11:50 +0000 (20:11 +0000)]
Fix thinko in previous change.

18 years agoChange bnodes so they don't carry their names around. Instead,
Chris Hanson [Thu, 9 Nov 2006 20:07:42 +0000 (20:07 +0000)]
Change bnodes so they don't carry their names around.  Instead,
generate the names on demand from their hash numbers, which guarantees
uniqueness without a lot of digits.  As a corollary this obviates the
bnode "handle" mechanism, so that's removed.

18 years agoImplement PORT/INTERN-PROPERTY!.
Chris Hanson [Thu, 9 Nov 2006 20:04:57 +0000 (20:04 +0000)]
Implement PORT/INTERN-PROPERTY!.

18 years agoChange bnode mechanism so that user-supplied names are used only for
Chris Hanson [Thu, 9 Nov 2006 19:43:54 +0000 (19:43 +0000)]
Change bnode mechanism so that user-supplied names are used only for
parsing.

18 years agoNew Edwin library: a front end for lisppaste, using its XML-RPC interface.
Taylor R. Campbell [Sat, 4 Nov 2006 20:25:17 +0000 (20:25 +0000)]
New Edwin library: a front end for lisppaste, using its XML-RPC interface.
See <http://paste.lisp.org/> for details.

18 years agoImplement a simple XML-RPC client.
Taylor R. Campbell [Sat, 4 Nov 2006 20:23:19 +0000 (20:23 +0000)]
Implement a simple XML-RPC client.

18 years agoRename two internal operations in RFC 822 headers in the HTTP client,
Taylor R. Campbell [Sat, 4 Nov 2006 20:16:47 +0000 (20:16 +0000)]
Rename two internal operations in RFC 822 headers in the HTTP client,
and export them, so that users of the library can get at them.

This is a lame workaround for the problem that the RFC 822 support lies
in Edwin, rather than the run-time system.  At some point that should
be fixed properly, and the support updated to RFC 2822, but this works
for now.

18 years agoImplement WITH-LOADING-MESSAGE to capture common pattern of loading
Chris Hanson [Sat, 4 Nov 2006 06:38:32 +0000 (06:38 +0000)]
Implement WITH-LOADING-MESSAGE to capture common pattern of loading
files in various ways.

18 years agoAdd support for HEAD requests.
Chris Hanson [Fri, 3 Nov 2006 06:30:42 +0000 (06:30 +0000)]
Add support for HEAD requests.

18 years agoChange CHANNEL-OPEN? to return #T when true.
Chris Hanson [Wed, 1 Nov 2006 05:19:58 +0000 (05:19 +0000)]
Change CHANNEL-OPEN? to return #T when true.

18 years agoUpdate copyright dates.
Chris Hanson [Wed, 1 Nov 2006 05:16:30 +0000 (05:16 +0000)]
Update copyright dates.

18 years agoWhen an I/O port shares the same channel for input and output, don't
Chris Hanson [Wed, 1 Nov 2006 05:09:42 +0000 (05:09 +0000)]
When an I/O port shares the same channel for input and output, don't
close the channel unless both the input and output sides of the port
are closed.

18 years agoChange STRING-HASH to use FNV hash algorithm.
Chris Hanson [Mon, 30 Oct 2006 06:02:30 +0000 (06:02 +0000)]
Change STRING-HASH to use FNV hash algorithm.

18 years agoIncrease obarray size to more reasonable value. A current
Chris Hanson [Mon, 30 Oct 2006 05:50:53 +0000 (05:50 +0000)]
Increase obarray size to more reasonable value.  A current
fully-loaded band has about 28500 interned symbols, so this value
should provide for very small buckets.

18 years agoRedefine `UX_vfork' to be `fork' on OS X, because setsid and others are
Taylor R. Campbell [Sun, 29 Oct 2006 17:25:15 +0000 (17:25 +0000)]
Redefine `UX_vfork' to be `fork' on OS X, because setsid and others are
not allowed in vforked processes.  Always check the value of setsid,
since it should work on OS X now that we use fork there instead of
vfork.

18 years agoFix bug in calling select(2): its first argument is one greater than
Taylor R. Campbell [Sun, 29 Oct 2006 16:43:38 +0000 (16:43 +0000)]
Fix bug in calling select(2): its first argument is one greater than
the highest file descriptor involved, _not_ the number of file
descriptors involved.

18 years agoRevert previous change and reimplement functionality using new
Chris Hanson [Sun, 29 Oct 2006 06:20:11 +0000 (06:20 +0000)]
Revert previous change and reimplement functionality using new
procedures PORT/RDF-PREFIX-REGISTRY and PORT/SET-RDF-PREFIX-REGISTRY.
Implement new procedure WRITE-RDF/TURTLE.  Change READ-RDF/TURTLE-FILE
to return two values, a list of triples and a newly-allocated prefix
registry.

18 years agoRename PORT/BNODE-REGISTRY and PORT/DROP-BNODE-REGISTRY and export
Chris Hanson [Sun, 29 Oct 2006 06:18:03 +0000 (06:18 +0000)]
Rename PORT/BNODE-REGISTRY and PORT/DROP-BNODE-REGISTRY and export
them to global environment.  Make analogous procedures for prefix
registries.  Add new procedure to merge one prefix registry into
another.

18 years agoExport several more Turtle output procedures.
Chris Hanson [Sun, 29 Oct 2006 05:35:07 +0000 (05:35 +0000)]
Export several more Turtle output procedures.

18 years agoChange all Turtle procedures to require a prefix-registry argument.
Chris Hanson [Sun, 29 Oct 2006 05:32:35 +0000 (05:32 +0000)]
Change all Turtle procedures to require a prefix-registry argument.

18 years agoExchange position of REGISTRY and ERROR? arguments on RDF-QNAME->URI,
Chris Hanson [Sun, 29 Oct 2006 05:23:59 +0000 (05:23 +0000)]
Exchange position of REGISTRY and ERROR? arguments on RDF-QNAME->URI,
URI->RDF-QNAME, and URI->RDF-PREFIX.

18 years agoRewrite Turtle encoder to have simpler, more consistent indentation,
Chris Hanson [Fri, 27 Oct 2006 13:49:15 +0000 (13:49 +0000)]
Rewrite Turtle encoder to have simpler, more consistent indentation,
and to sort prefix definitions by name.

18 years agoChange WITH-NOTIFICATION to use a different strategy for dealing with
Chris Hanson [Thu, 26 Oct 2006 05:01:47 +0000 (05:01 +0000)]
Change WITH-NOTIFICATION to use a different strategy for dealing with
errors.  The previous strategy wasn't signalling the errors right, for
reasons I don't understand.

18 years agoFix bug: list parser wasn't recognizing whitespace before the close
Chris Hanson [Thu, 26 Oct 2006 02:31:31 +0000 (02:31 +0000)]
Fix bug: list parser wasn't recognizing whitespace before the close
paren.

18 years agoChange "Syntax file" to "Generating SCode for file".
Chris Hanson [Wed, 25 Oct 2006 17:49:55 +0000 (17:49 +0000)]
Change "Syntax file" to "Generating SCode for file".

18 years agoChange "Compile File" to "Compiling file".
Chris Hanson [Wed, 25 Oct 2006 17:43:23 +0000 (17:43 +0000)]
Change "Compile File" to "Compiling file".

18 years agoEliminate unnecessary semicolons in notification lines.
Chris Hanson [Wed, 25 Oct 2006 17:32:56 +0000 (17:32 +0000)]
Eliminate unnecessary semicolons in notification lines.

18 years agoUse WITH-NOTIFICATION when pre-loading class definitions.
Chris Hanson [Wed, 25 Oct 2006 17:30:24 +0000 (17:30 +0000)]
Use WITH-NOTIFICATION when pre-loading class definitions.

18 years agoUse WRITE-NOTIFICATION-LINE to generate dependency notifications.
Chris Hanson [Wed, 25 Oct 2006 17:29:21 +0000 (17:29 +0000)]
Use WRITE-NOTIFICATION-LINE to generate dependency notifications.

18 years agoDon't use generic script to delete packaging files. That script's
Chris Hanson [Wed, 25 Oct 2006 17:24:32 +0000 (17:24 +0000)]
Don't use generic script to delete packaging files.  That script's
general patterns delete "key-w32.scm" too.

18 years agoUse new WITH-NOTIFICATION and WRITE-NOTIFICATION-LINE to generate
Chris Hanson [Wed, 25 Oct 2006 05:42:48 +0000 (05:42 +0000)]
Use new WITH-NOTIFICATION and WRITE-NOTIFICATION-LINE to generate
status output.

18 years agoChange way that WITH-NOTIFICATION prints "refresh" line.
Chris Hanson [Wed, 25 Oct 2006 05:40:21 +0000 (05:40 +0000)]
Change way that WITH-NOTIFICATION prints "refresh" line.

18 years agoAdd WRITE-NOTIFICATION-LINE.
Chris Hanson [Wed, 25 Oct 2006 05:05:24 +0000 (05:05 +0000)]
Add WRITE-NOTIFICATION-LINE.

18 years agoImplement WITH-NOTIFICATION to provide more uniform handling of status
Chris Hanson [Wed, 25 Oct 2006 04:25:37 +0000 (04:25 +0000)]
Implement WITH-NOTIFICATION to provide more uniform handling of status
notifications, such as "Loading" messages from LOAD.

18 years agoFix typo in previous change.
Chris Hanson [Wed, 25 Oct 2006 04:23:06 +0000 (04:23 +0000)]
Fix typo in previous change.

18 years agoImplement new output operations OUTPUT-PORT/LINE-START? and
Chris Hanson [Wed, 25 Oct 2006 03:15:29 +0000 (03:15 +0000)]
Implement new output operations OUTPUT-PORT/LINE-START? and
OUTPUT-PORT/BYTES-WRITTEN.

18 years agoEliminate unused COLUMN field from GSTATE structure.
Chris Hanson [Wed, 25 Oct 2006 02:50:01 +0000 (02:50 +0000)]
Eliminate unused COLUMN field from GSTATE structure.

18 years agoEliminate CHAR-CONTROLIFY and friends in favor of more general
Chris Hanson [Tue, 24 Oct 2006 04:14:11 +0000 (04:14 +0000)]
Eliminate CHAR-CONTROLIFY and friends in favor of more general
MERGE-BUCKY-BITS.  Use new bucky-bit abstractions from runtime.

18 years agoStore bucky bits in variables, and provide operations to test and set
Chris Hanson [Tue, 24 Oct 2006 04:08:58 +0000 (04:08 +0000)]
Store bucky bits in variables, and provide operations to test and set
them.  This should provide a little more abstraction than at present.

18 years agoChange pointer-button abstraction to have bucky bits, and update
Chris Hanson [Sun, 22 Oct 2006 16:10:06 +0000 (16:10 +0000)]
Change pointer-button abstraction to have bucky bits, and update
different terminal drivers to supply them.

18 years agoChange representation of pointer-button codes to include 8 bits of
Chris Hanson [Sun, 22 Oct 2006 15:39:18 +0000 (15:39 +0000)]
Change representation of pointer-button codes to include 8 bits of
button number of 4 bucky bits.  Don't try to fit keysym into a fixnum;
it's a 29-bit value that must be preserved.

18 years agoChange x_modifier_mask_to_bucky_bits and x_key_button_mask_to_scheme
Chris Hanson [Sun, 22 Oct 2006 01:59:23 +0000 (01:59 +0000)]
Change x_modifier_mask_to_bucky_bits and x_key_button_mask_to_scheme
to use unsigned long rather than long for computing result.

18 years agoStrip the bucky bit for control from key input events only if the
Taylor R. Campbell [Sat, 21 Oct 2006 21:16:53 +0000 (21:16 +0000)]
Strip the bucky bit for control from key input events only if the
character is already a control character.  Otherwise leave it in, so
that other characters can be control-modified without using the
clumsier C-z or C-^ prefix key bindings.

18 years agoFind interpretation of modifier masks through the X server's modifier
Taylor R. Campbell [Sat, 21 Oct 2006 16:05:58 +0000 (16:05 +0000)]
Find interpretation of modifier masks through the X server's modifier
mapping and keyboard mapping by finding which modifier masks are
associated with keycodes mapped to the keysyms for modifier keys.  This
now follows the ICCCM, rather than assuming that Mod1 means Meta, Mod2
means Super, and so on.  Edwin also now recognizes Super and Hyper in
key presses as a result; before it would ignore any modifier masks
other than Control and Mod1 (Meta).

18 years agoExport procedures to generate parts of turtle file, for use by
Chris Hanson [Fri, 20 Oct 2006 02:04:14 +0000 (02:04 +0000)]
Export procedures to generate parts of turtle file, for use by
simple-schema.  Simplify algorithms a bit, and clean up code layout.

18 years agoChange output to use simpler and more consistent indentation.
Chris Hanson [Fri, 20 Oct 2006 01:19:33 +0000 (01:19 +0000)]
Change output to use simpler and more consistent indentation.

18 years agoImplement support for writing collection syntax.
Chris Hanson [Thu, 19 Oct 2006 19:19:20 +0000 (19:19 +0000)]
Implement support for writing collection syntax.

18 years agoDo a better job distinguishing procedures that generate RDF/NT syntax.
Chris Hanson [Thu, 19 Oct 2006 17:48:26 +0000 (17:48 +0000)]
Do a better job distinguishing procedures that generate RDF/NT syntax.
Previously these were referred to by generic names.

18 years agoImplement Turtle output.
Chris Hanson [Thu, 19 Oct 2006 15:22:25 +0000 (15:22 +0000)]
Implement Turtle output.

18 years agoAdd URI->RDF-PREFIX.
Chris Hanson [Thu, 19 Oct 2006 15:20:33 +0000 (15:20 +0000)]
Add URI->RDF-PREFIX.

18 years agoFixed bug: LOAD failed with relative pathnames, e.g.:
Arthur Gleckler [Mon, 16 Oct 2006 06:23:45 +0000 (06:23 +0000)]
Fixed bug: LOAD failed with relative pathnames, e.g.:

  (load "../foo.scm")

18 years agoFixed typos in `set-output-buffer-coding!'.
Arthur Gleckler [Sat, 14 Oct 2006 06:26:25 +0000 (06:26 +0000)]
Fixed typos in `set-output-buffer-coding!'.

18 years agoUpdate config.{guess,sub}.
Chris Hanson [Thu, 12 Oct 2006 22:43:27 +0000 (22:43 +0000)]
Update config.{guess,sub}.

18 years agoDon't bother generating gunk logs.
Chris Hanson [Tue, 10 Oct 2006 20:06:56 +0000 (20:06 +0000)]
Don't bother generating gunk logs.

18 years agoRemove no-longer-needed reference to "True and False" from the
Chris Hanson [Tue, 10 Oct 2006 13:43:48 +0000 (13:43 +0000)]
Remove no-longer-needed reference to "True and False" from the
definition of NULL?.

18 years agoChange interface to C native code to simplify porting to new
Chris Hanson [Mon, 9 Oct 2006 06:51:10 +0000 (06:51 +0000)]
Change interface to C native code to simplify porting to new
microcode.

18 years agoClean up output a little to simplify porting to new microcode.
Chris Hanson [Mon, 9 Oct 2006 06:48:32 +0000 (06:48 +0000)]
Clean up output a little to simplify porting to new microcode.

18 years agoMove C output abstraction to "cutl.scm" so that it's available earlier
Chris Hanson [Sun, 8 Oct 2006 01:27:59 +0000 (01:27 +0000)]
Move C output abstraction to "cutl.scm" so that it's available earlier
in the load sequence.

18 years agoFix typo.
Chris Hanson [Sat, 7 Oct 2006 20:56:02 +0000 (20:56 +0000)]
Fix typo.

18 years agoAdd "savannah-arthur".
Chris Hanson [Sat, 7 Oct 2006 06:21:05 +0000 (06:21 +0000)]
Add "savannah-arthur".

18 years agoReorganize closure code slightly to clarify.
Chris Hanson [Sat, 7 Oct 2006 05:50:22 +0000 (05:50 +0000)]
Reorganize closure code slightly to clarify.

18 years agoTweak.
Chris Hanson [Sat, 7 Oct 2006 05:49:37 +0000 (05:49 +0000)]
Tweak.

18 years agoFix typo.
Chris Hanson [Sat, 7 Oct 2006 05:48:58 +0000 (05:48 +0000)]
Fix typo.

18 years agoUpdate some more code to use C output abstraction.
Chris Hanson [Fri, 6 Oct 2006 05:00:34 +0000 (05:00 +0000)]
Update some more code to use C output abstraction.

18 years agoAdd C:<< and C:>>.
Chris Hanson [Fri, 6 Oct 2006 04:53:35 +0000 (04:53 +0000)]
Add C:<< and C:>>.

18 years agoUse C output abstraction.
Chris Hanson [Thu, 5 Oct 2006 19:14:52 +0000 (19:14 +0000)]
Use C output abstraction.

18 years agoAllow booleans as line items, and translate them to C booleans.
Chris Hanson [Thu, 5 Oct 2006 19:14:39 +0000 (19:14 +0000)]
Allow booleans as line items, and translate them to C booleans.

18 years agoFixed: Change 1.28 removed the check that output ports passed to
Arthur Gleckler [Thu, 5 Oct 2006 05:44:39 +0000 (05:44 +0000)]
Fixed: Change 1.28 removed the check that output ports passed to
`port-position' and `set-port-position!' must also be input ports.

18 years agoRestructure code that generates the code and data for a file's top
Chris Hanson [Thu, 5 Oct 2006 04:55:54 +0000 (04:55 +0000)]
Restructure code that generates the code and data for a file's top
level.

18 years agoFix bug: sense of test for binary de/normalizers was reversed.
Chris Hanson [Wed, 4 Oct 2006 22:38:41 +0000 (22:38 +0000)]
Fix bug: sense of test for binary de/normalizers was reversed.

18 years agoFix and handful of bugs.
Chris Hanson [Wed, 4 Oct 2006 19:02:26 +0000 (19:02 +0000)]
Fix and handful of bugs.

18 years agoAdded `port-position' and `set-port-position!' operations on file I/O
Arthur Gleckler [Wed, 4 Oct 2006 05:51:55 +0000 (05:51 +0000)]
Added `port-position' and `set-port-position!' operations on file I/O
ports.  The `port-position' procedure returns the offset, in bytes,
from the beginning of the file.  The `set-port-position!' procedure
sets the position.

Both operations work only on ports that are opened with binary
normalizers or denormalizers, i.e. ones that make no transformation.
We should consider lifting this restriction, but this is a useful
addition even with it.

When used with output ports, the port passed to these procedures must
also be an input port.

The `port-position' procedure works even after a character has been
"unread", even for ports with non-single-byte character encodings.

18 years agoFix bug: LOAD-OPTION was generating a SIGSEGV when trying to load a
Chris Hanson [Mon, 2 Oct 2006 04:18:15 +0000 (04:18 +0000)]
Fix bug: LOAD-OPTION was generating a SIGSEGV when trying to load a
runtime option, because it was confused by the "options" subdirectory.

18 years agoTweak logic of MAKE-PATHNAME to simplify it.
Chris Hanson [Mon, 2 Oct 2006 04:16:48 +0000 (04:16 +0000)]
Tweak logic of MAKE-PATHNAME to simplify it.

18 years agoRemove now-unused "files-compiled.scm".
Chris Hanson [Mon, 2 Oct 2006 03:28:40 +0000 (03:28 +0000)]
Remove now-unused "files-compiled.scm".

18 years agoFix another typo.
Chris Hanson [Sun, 1 Oct 2006 21:11:39 +0000 (21:11 +0000)]
Fix another typo.

18 years agoMissed two references to @X_LIBS@.
Chris Hanson [Sun, 1 Oct 2006 21:00:46 +0000 (21:00 +0000)]
Missed two references to @X_LIBS@.

18 years agoUpdate configuration to handle COMPILED_SOURCES better. Also use
Chris Hanson [Sun, 1 Oct 2006 20:56:58 +0000 (20:56 +0000)]
Update configuration to handle COMPILED_SOURCES better.  Also use
AC_PATH_X rather than AC_PATH_XTRA to eliminate unnecessary
dependencies in the output.

18 years agoReimplement C output generation. There's now a procedural layer for
Chris Hanson [Sun, 1 Oct 2006 05:38:44 +0000 (05:38 +0000)]
Reimplement C output generation.  There's now a procedural layer for
generating C code, which gives significantly greater control over the
output formatting.  Code using the layer is simpler and clearer than
what it replaces.

Additionally, the output no longer uses DEFUN, EXFUN, etc., instead
generating ANSI C.  This allows the generated code to be used with the
(unreleased) v15 microcode.

18 years agoMake SF quieter.
Chris Hanson [Fri, 29 Sep 2006 19:30:07 +0000 (19:30 +0000)]
Make SF quieter.

18 years agoFix cleaning rules to eliminate stuff generated by C back end.
Chris Hanson [Fri, 29 Sep 2006 19:28:58 +0000 (19:28 +0000)]
Fix cleaning rules to eliminate stuff generated by C back end.

18 years agoAlso clean up files generated by compiling to C.
Chris Hanson [Thu, 28 Sep 2006 23:48:27 +0000 (23:48 +0000)]
Also clean up files generated by compiling to C.

18 years agoUse "T" as ISO-8601 date/time separator, since it makes the result
Chris Hanson [Tue, 26 Sep 2006 06:58:53 +0000 (06:58 +0000)]
Use "T" as ISO-8601 date/time separator, since it makes the result
useful in more contexts.

18 years agoRewrite so that the script is run when the working directory is the
Chris Hanson [Mon, 25 Sep 2006 05:57:34 +0000 (05:57 +0000)]
Rewrite so that the script is run when the working directory is the
root of the scheme tree, rather than the runtime subdirectory.  Also
do a little simplification.

18 years agoUntangle the c-back-end knot by using $(wildcard ...) in the generated
Chris Hanson [Mon, 25 Sep 2006 05:56:12 +0000 (05:56 +0000)]
Untangle the c-back-end knot by using $(wildcard ...) in the generated
makefile rather than explicit enumeration of the files.

18 years agoAdd support for "--enable-c-back-end", to override native-code support
Chris Hanson [Mon, 25 Sep 2006 04:40:10 +0000 (04:40 +0000)]
Add support for "--enable-c-back-end", to override native-code support
if desired.

18 years agoChange all "Setup.sh" scripts to accept arguments and pass them
Chris Hanson [Mon, 25 Sep 2006 04:39:12 +0000 (04:39 +0000)]
Change all "Setup.sh" scripts to accept arguments and pass them
along.  "Setup.sh" in microcode passes those arguments to configure.

18 years agoIf <stdlib.h> is available, use that rather than explicitly declaring
Chris Hanson [Mon, 25 Sep 2006 04:36:56 +0000 (04:36 +0000)]
If <stdlib.h> is available, use that rather than explicitly declaring
malloc and realloc.

18 years agoBump version number for C-back-end changes.
Chris Hanson [Sun, 24 Sep 2006 23:56:11 +0000 (23:56 +0000)]
Bump version number for C-back-end changes.

18 years agoFix bug: must use generic arithmetic when comparing
Chris Hanson [Sun, 24 Sep 2006 23:51:57 +0000 (23:51 +0000)]
Fix bug: must use generic arithmetic when comparing
SIGNED-FIXNUM/UPPER-LIMIT, since it's an exclusive limit and not
usually representable as a fixnum.

18 years agoBump version number to current. This probably should be automated by
Chris Hanson [Thu, 21 Sep 2006 04:52:54 +0000 (04:52 +0000)]
Bump version number to current.  This probably should be automated by
the configure script.

18 years agoBump version number to current. This probably should be automated by
Chris Hanson [Thu, 21 Sep 2006 04:52:38 +0000 (04:52 +0000)]
Bump version number to current.  This probably should be automated by
the configure script.

18 years ago1. Add unsigned fixnum comparisons, needed to compile runtime-check.
Guillermo J. Rozas [Sun, 17 Sep 2006 12:10:04 +0000 (12:10 +0000)]
1. Add unsigned fixnum comparisons, needed to compile runtime-check.

2. C back end:
   Eliminate use of the 'system' primitive and use run-shell-command
   from option synchronous-subprocess.

18 years agoChanges to resurrect the C back end.
Guillermo J. Rozas [Sat, 16 Sep 2006 11:19:09 +0000 (11:19 +0000)]
Changes to resurrect the C back end.

Changes to make the microcode work on OSX/Power PC.

Changes to make the microcode when compiled by a 64-bit compiler
(x86_64, Power PC, Itanium).

18 years agoFix bug: typo was causing WNA error to be signalled from record
Chris Hanson [Sat, 16 Sep 2006 05:29:17 +0000 (05:29 +0000)]
Fix bug: typo was causing WNA error to be signalled from record
constructors of large records.

18 years agoEliminate long-unused DUMP-WORLD.
Chris Hanson [Fri, 15 Sep 2006 01:23:27 +0000 (01:23 +0000)]
Eliminate long-unused DUMP-WORLD.