mit-scheme.git
18 years agoAdd limited support for column tracking -- only works for ISO 8859-x
Chris Hanson [Tue, 20 Dec 2005 01:52:56 +0000 (01:52 +0000)]
Add limited support for column tracking -- only works for ISO 8859-x
character sets.

18 years agoDon't use multiclosures by default, as this adversely affects how
Chris Hanson [Mon, 19 Dec 2005 19:29:56 +0000 (19:29 +0000)]
Don't use multiclosures by default, as this adversely affects how
procedures are reclaimed by GC.

18 years agoChange XML->STRING to use string output ports and to support coding.
Chris Hanson [Mon, 19 Dec 2005 04:11:32 +0000 (04:11 +0000)]
Change XML->STRING to use string output ports and to support coding.

18 years agoChange HTML-xxx-DOCUMENT to allow overriding the XML declaration.
Chris Hanson [Mon, 19 Dec 2005 04:03:14 +0000 (04:03 +0000)]
Change HTML-xxx-DOCUMENT to allow overriding the XML declaration.

18 years agoChange XML-ATTRS to eliminate duplicates. Implement FIND-XML-ATTR.
Chris Hanson [Mon, 19 Dec 2005 04:00:37 +0000 (04:00 +0000)]
Change XML-ATTRS to eliminate duplicates.  Implement FIND-XML-ATTR.

18 years agoUpdate to reflect files added since 2001.
Chris Hanson [Mon, 19 Dec 2005 03:58:56 +0000 (03:58 +0000)]
Update to reflect files added since 2001.

18 years agoFix two bugs: (1) <MESSAGE-PART> was missing a MESSAGE-LENGTH method.
Chris Hanson [Sun, 18 Dec 2005 03:27:00 +0000 (03:27 +0000)]
Fix two bugs: (1) <MESSAGE-PART> was missing a MESSAGE-LENGTH method.
(2) MIME:PARSE-BODY-STRUCTURE was incorrectly creating parts with an
encoding that was #F (the encoding must always be a symbol).

18 years agoConsiderably simplify implementation of MIME encodings, and add
Chris Hanson [Sun, 18 Dec 2005 03:25:29 +0000 (03:25 +0000)]
Considerably simplify implementation of MIME encodings, and add
support for "unknown" encoding types.

18 years agoAdd missing initialization for (RUNTIME URI).
Chris Hanson [Sun, 18 Dec 2005 00:20:43 +0000 (00:20 +0000)]
Add missing initialization for (RUNTIME URI).

18 years agoExpunge FOLDER-SUPPORTS-MIME? and restructure INSERT-MESSAGE in
Taylor R. Campbell [Fri, 16 Dec 2005 02:04:59 +0000 (02:04 +0000)]
Expunge FOLDER-SUPPORTS-MIME? and restructure INSERT-MESSAGE in
imail-top.scm slightly to fix bug introduced with new MIME parser,
where non-MIME messages in folders that claim to support MIME would
cause errors by trying to walk a MIME body structure that is #F.
Folders that support MIME specially now need only to implement
different MIME-MESSAGE-BODY-STRUCTURE & WRITE-MIME-MESSAGE-BODY-PART
methods, since there is default MIME support for all folders now.

18 years agoChange MAKE-GSTATE to take separate arguments for coding and
Chris Hanson [Wed, 14 Dec 2005 05:44:53 +0000 (05:44 +0000)]
Change MAKE-GSTATE to take separate arguments for coding and
line-ending names.  Initialize string I/O ports to ISO-8859-1 and
NEWLINE, respectively, as TEXT is wrong on non-unix systems.

18 years agoEliminate UTF-xx string ports; use corresponding coding on standard
Chris Hanson [Tue, 13 Dec 2005 15:31:02 +0000 (15:31 +0000)]
Eliminate UTF-xx string ports; use corresponding coding on standard
string ports instead.

18 years agoUgh: the CVS/Root file for this directory was not updated after the
Chris Hanson [Tue, 13 Dec 2005 06:41:05 +0000 (06:41 +0000)]
Ugh: the CVS/Root file for this directory was not updated after the
move to Savannah, and consequently all of the updates have been
recorded in the wrong place.  Merge them back in now.

18 years agoUpdate for moved CVS repository.
Chris Hanson [Tue, 13 Dec 2005 06:20:01 +0000 (06:20 +0000)]
Update for moved CVS repository.

18 years agoUpdate for moved CVS repository.
Chris Hanson [Tue, 13 Dec 2005 06:14:57 +0000 (06:14 +0000)]
Update for moved CVS repository.

18 years agoFix typo: "$Id $" --> "$Id$". Reindent a couple of forms. Move page
Chris Hanson [Tue, 13 Dec 2005 01:41:39 +0000 (01:41 +0000)]
Fix typo: "$Id $" --> "$Id$".  Reindent a couple of forms.  Move page
marks around to fix overlong page.

18 years agoGeneralize generic I/O interface so that it can work with ports that
Chris Hanson [Mon, 12 Dec 2005 21:55:44 +0000 (21:55 +0000)]
Generalize generic I/O interface so that it can work with ports that
aren't backed by channels.  Reimplement string I/O ports to work this
way, so that they can take advantage of all the nice codecs.

18 years agoInitial checkin of new general MIME parser for IMAIL. All folders by
Taylor R. Campbell [Sat, 10 Dec 2005 06:45:32 +0000 (06:45 +0000)]
Initial checkin of new general MIME parser for IMAIL.  All folders by
default now support MIME.

Still missing:
  - message media type
  - RFC2047 =?x?y?z= header field parsing
  - Content-Language parsing
  - coherent error handling
  - efficiency of performance

18 years agoImplement RFC822 extensions needed by the MIME parser:
Taylor R. Campbell [Fri, 9 Dec 2005 20:34:15 +0000 (20:34 +0000)]
Implement RFC822 extensions needed by the MIME parser:

  - The tokenizer is now generalized over the special character set,
    which the MIME header syntax extends.
  - The tokenizer also has an option for whether to keep ignored
    tokens in the first place, making RFC822:STRIP-WHITESPACE!'s no
    longer necessary.
  - RFC822:UNQUOTE-STRING is the inverse of RFC822:QUOTE-STRING.

18 years agoImplement SRFI 2: AND-LET*
Taylor R. Campbell [Fri, 9 Dec 2005 20:25:59 +0000 (20:25 +0000)]
Implement SRFI 2: AND-LET*

18 years agoFix a number of small errors in the port abstraction and its use:
Taylor R. Campbell [Fri, 9 Dec 2005 07:06:23 +0000 (07:06 +0000)]
Fix a number of small errors in the port abstraction and its use:

  - Fix WRITE-CHAR methods supplied to MAKE-PORT-TYPE to return the
    number of characters written, i.e. 1, not an unspecific value.
  - Make sure all of the input & output features in the port
    abstraction for transcript ports actually check whether the
    supplied operation succeeded before transcribing the I/O.
  - Use WIDE-STRING-REF, not STRING-REF, on wide strings.
  - Use XSUBSTRING-MOVE!, not SUBSTRING-MOVE!, on external strings.

18 years agoLoad VC on all platforms, not just unix.
Chris Hanson [Wed, 30 Nov 2005 04:55:45 +0000 (04:55 +0000)]
Load VC on all platforms, not just unix.

18 years agoAdd support for codings and line endings to string ports.
Chris Hanson [Tue, 29 Nov 2005 06:54:11 +0000 (06:54 +0000)]
Add support for codings and line endings to string ports.

18 years agoAvert infinite recursion in WRITE-MESSAGE-BODY on file methods by
Taylor R. Campbell [Sun, 27 Nov 2005 06:40:53 +0000 (06:40 +0000)]
Avert infinite recursion in WRITE-MESSAGE-BODY on file methods by
having file external message accessor methods return the item being
accessed if it is not a file external reference, instead of calling the
next method in that case.

18 years agoFix error in SUBSTRING->LINES with no default line-ending argument
Taylor R. Campbell [Sun, 27 Nov 2005 06:35:24 +0000 (06:35 +0000)]
Fix error in SUBSTRING->LINES with no default line-ending argument
whereby STRING-LENGTH was passed the default object (#!DEFAULT), not
the default line-ending string.

18 years agoImplement GNU Emacs's NEXT-LINE behaviour, which only conditionally
Taylor R. Campbell [Thu, 24 Nov 2005 00:00:59 +0000 (00:00 +0000)]
Implement GNU Emacs's NEXT-LINE behaviour, which only conditionally
inserts a newline if the point is at the end of the buffer, controlled
by the new variable NEXT-LINE-ADD-NEWLINES, which is by default set to
#T so as to preserve the old behaviour.

18 years agoIn binding items generated by top-level syntax definitions, rename the
Taylor R. Campbell [Sun, 20 Nov 2005 04:12:59 +0000 (04:12 +0000)]
In binding items generated by top-level syntax definitions, rename the
identifier being bound with RENAME-TOP-LEVEL-IDENTIFIER, because some
syntax definitions are produced with temporary synthetic identifiers,
which the output interface should not see.

Also, elide the unnecessary OVERLOADED-BINDING-THEORY indirection in
variable and syntactic definition form classification.

19 years agoFix bug: changes to size of window were being ignored because
Chris Hanson [Wed, 16 Nov 2005 04:00:16 +0000 (04:00 +0000)]
Fix bug: changes to size of window were being ignored because
they were being delivered in non-synthetic ConfigureNotify events.

19 years agoFix bug: must save dstack_position _prior_ to calling prop_data
Chris Hanson [Tue, 15 Nov 2005 00:33:51 +0000 (00:33 +0000)]
Fix bug: must save dstack_position _prior_ to calling prop_data
converter.

19 years agoAdd changes to support DB 4.3.
Chris Hanson [Sun, 13 Nov 2005 03:53:47 +0000 (03:53 +0000)]
Add changes to support DB 4.3.

19 years agoEliminate unused procedure x_error_message.
Chris Hanson [Sun, 13 Nov 2005 03:47:00 +0000 (03:47 +0000)]
Eliminate unused procedure x_error_message.

19 years agoIn XTERM-OPEN-WINDOW, eliminate unused variable and tweak for style.
Chris Hanson [Sun, 13 Nov 2005 03:45:59 +0000 (03:45 +0000)]
In XTERM-OPEN-WINDOW, eliminate unused variable and tweak for style.

19 years agoAdd somewhat complex Emacs hack to deal with complexities of
Chris Hanson [Sat, 12 Nov 2005 22:53:36 +0000 (22:53 +0000)]
Add somewhat complex Emacs hack to deal with complexities of
positioning windows.  Ignore non-synthetic reconfigure events when
interacting with a reparenting window manager.  Eliminate use of
deprecated size and position hints fields.  Improve X debugging
information.  Change default internal-border-width from 1 to 0.
Simplify method used to catch X errors.

19 years agoRun XTERM-RECONFIGURE after setting font, _not_ XTERM-SET-SIZE.
Chris Hanson [Sat, 12 Nov 2005 22:34:58 +0000 (22:34 +0000)]
Run XTERM-RECONFIGURE after setting font, _not_ XTERM-SET-SIZE.

19 years agoEliminate some unnecessary integrations.
Chris Hanson [Sat, 12 Nov 2005 22:31:01 +0000 (22:31 +0000)]
Eliminate some unnecessary integrations.

19 years agoFix character set matching in the parser test example to use the
Taylor R. Campbell [Wed, 9 Nov 2005 21:26:53 +0000 (21:26 +0000)]
Fix character set matching in the parser test example to use the
CHAR-SET directive instead of ALPHABET, which, since the introduction
of Unicode support, now refers to Unicode alphabets, as the name
implies, and not character sets.

19 years agoRevert "optimization" from previous changes.
Chris Hanson [Mon, 7 Nov 2005 06:58:50 +0000 (06:58 +0000)]
Revert "optimization" from previous changes.

19 years agoMake sure that group point is updated when window point is changed.
Chris Hanson [Sun, 6 Nov 2005 16:30:58 +0000 (16:30 +0000)]
Make sure that group point is updated when window point is changed.

19 years agoChange SET-WINDOW-POINT! and SET-GROUP-POINT! to modify point's index
Chris Hanson [Sun, 6 Nov 2005 16:17:00 +0000 (16:17 +0000)]
Change SET-WINDOW-POINT! and SET-GROUP-POINT! to modify point's index
rather than creating a new marker.  Add new procedures
SET-GROUP-POINT-INDEX! and %SET-BUFFER-POINT-INDEX!.

19 years agoFix bug: FIRST-TAGS-TABLE-BUFFER was confusing #F and () and causing
Chris Hanson [Sun, 6 Nov 2005 13:35:25 +0000 (13:35 +0000)]
Fix bug: FIRST-TAGS-TABLE-BUFFER was confusing #F and () and causing
SEGV when there was no tag table being visited.

19 years agoReorganize and simplify.
Chris Hanson [Sat, 5 Nov 2005 06:19:39 +0000 (06:19 +0000)]
Reorganize and simplify.

19 years agoFix thinko in UNDO-RECORD-INSERTION!.
Chris Hanson [Sat, 5 Nov 2005 06:18:31 +0000 (06:18 +0000)]
Fix thinko in UNDO-RECORD-INSERTION!.

19 years agoFix copyright dates.
Chris Hanson [Sat, 5 Nov 2005 04:23:00 +0000 (04:23 +0000)]
Fix copyright dates.

19 years agoExport database open/close procedures to expanders.
Chris Hanson [Thu, 3 Nov 2005 19:29:18 +0000 (19:29 +0000)]
Export database open/close procedures to expanders.

19 years agoFix thinko from previous change.
Chris Hanson [Wed, 26 Oct 2005 21:44:43 +0000 (21:44 +0000)]
Fix thinko from previous change.

19 years agoAdd Taylor Campbell to list.
Chris Hanson [Mon, 24 Oct 2005 18:19:40 +0000 (18:19 +0000)]
Add Taylor Campbell to list.

19 years agoDon't use pathname in printed representation of file port -- convert
Chris Hanson [Mon, 24 Oct 2005 05:35:26 +0000 (05:35 +0000)]
Don't use pathname in printed representation of file port -- convert
to namestring instead.

19 years agoFix bug: explicitly-defined record unparsers installed during cold
Chris Hanson [Mon, 24 Oct 2005 05:31:07 +0000 (05:31 +0000)]
Fix bug: explicitly-defined record unparsers installed during cold
load weren't being seen.

19 years agoFix bug in parser optimizer whereby local bindings for the buffer
Taylor R. Campbell [Mon, 24 Oct 2005 05:07:38 +0000 (05:07 +0000)]
Fix bug in parser optimizer whereby local bindings for the buffer
pointer would be eliminated due to ostensible lack of reference, even
if the user code contained references to them, because the reference
counter won't descend into the user code.  Also, reintroduce the new
rule, which was previously removed, for turning redundant bindings of
the buffer pointer into aliases.  Cases affected independently by each
optimization should now be covered correctly & safely.

19 years agoLENGTH operation is valid for both input _and_ output files.
Chris Hanson [Mon, 24 Oct 2005 02:51:23 +0000 (02:51 +0000)]
LENGTH operation is valid for both input _and_ output files.

19 years agoLENGTH operation is valid for both input _and_ output files.
Chris Hanson [Mon, 24 Oct 2005 02:47:47 +0000 (02:47 +0000)]
LENGTH operation is valid for both input _and_ output files.

19 years agoExport KEEP-MATCHING-ITEMS!.
Chris Hanson [Mon, 24 Oct 2005 02:30:08 +0000 (02:30 +0000)]
Export KEEP-MATCHING-ITEMS!.

19 years agoFix bug #14354: use email address and ctime() string in message
Chris Hanson [Mon, 24 Oct 2005 02:23:41 +0000 (02:23 +0000)]
Fix bug #14354: use email address and ctime() string in message
separator of FCC files, because they are supposed to be unix-mail
files.  Also add "Date" and "From" headers, and don't output a newline
before the first message in a file.

19 years agoFix bug #12430: do auto-fill line break _before_ inserting new char.
Chris Hanson [Mon, 24 Oct 2005 01:55:50 +0000 (01:55 +0000)]
Fix bug #12430: do auto-fill line break _before_ inserting new char.

19 years agoFix bug #11850: change port type predicates to return #T when true.
Chris Hanson [Mon, 24 Oct 2005 01:45:41 +0000 (01:45 +0000)]
Fix bug #11850: change port type predicates to return #T when true.

19 years agoFix bug #14361: IMAIL use of backslashes in symbol names was broken by
Chris Hanson [Mon, 24 Oct 2005 01:26:40 +0000 (01:26 +0000)]
Fix bug #14361: IMAIL use of backslashes in symbol names was broken by
change to reader syntax for symbols.

19 years agoUse new argument to TEST-FOR-IO-ON-CHANNEL.
Chris Hanson [Sun, 23 Oct 2005 21:10:02 +0000 (21:10 +0000)]
Use new argument to TEST-FOR-IO-ON-CHANNEL.

19 years agoFix copyright date.
Chris Hanson [Sun, 23 Oct 2005 21:03:52 +0000 (21:03 +0000)]
Fix copyright date.

19 years agoAdd optional BLOCK? argument to TEST-FOR-IO-ON-CHANNEL.
Chris Hanson [Sun, 23 Oct 2005 21:01:06 +0000 (21:01 +0000)]
Add optional BLOCK? argument to TEST-FOR-IO-ON-CHANNEL.

19 years agoFix bug #14844: Edwin tutorial causes an internal error if window is
Chris Hanson [Sun, 23 Oct 2005 20:41:22 +0000 (20:41 +0000)]
Fix bug #14844: Edwin tutorial causes an internal error if window is
too small.  Also fix pagination by restyling.

19 years agoFix problem with modeline being wrong for "added" files.
Chris Hanson [Fri, 21 Oct 2005 17:20:39 +0000 (17:20 +0000)]
Fix problem with modeline being wrong for "added" files.

19 years agoAnother pass on SVN integration. This one seems to perform basic
Chris Hanson [Fri, 21 Oct 2005 02:46:59 +0000 (02:46 +0000)]
Another pass on SVN integration.  This one seems to perform basic
operations correctly.

19 years agoInitial draft of subversion back end.
Chris Hanson [Wed, 19 Oct 2005 05:31:55 +0000 (05:31 +0000)]
Initial draft of subversion back end.

19 years agoExport DEFINE-GUARANTEE to global environment.
Chris Hanson [Thu, 29 Sep 2005 19:16:39 +0000 (19:16 +0000)]
Export DEFINE-GUARANTEE to global environment.

19 years agoIn HASH-TABLE/COUNT, rehash the table if it needs it -- this is the
Chris Hanson [Thu, 29 Sep 2005 19:15:54 +0000 (19:15 +0000)]
In HASH-TABLE/COUNT, rehash the table if it needs it -- this is the
only way to guarantee an accurate count.

19 years agoProvide default MIME type of "application/octet-stream" for otherwise
Chris Hanson [Tue, 20 Sep 2005 19:23:15 +0000 (19:23 +0000)]
Provide default MIME type of "application/octet-stream" for otherwise
unrecognized file types.

19 years agoChange IE content type to be "text/html".
Chris Hanson [Sat, 17 Sep 2005 01:20:50 +0000 (01:20 +0000)]
Change IE content type to be "text/html".

19 years agoAllow "iso8859-" character sets.
Chris Hanson [Tue, 13 Sep 2005 14:19:26 +0000 (14:19 +0000)]
Allow "iso8859-" character sets.

19 years agoStandardize guarantees in record package.
Chris Hanson [Thu, 8 Sep 2005 19:12:49 +0000 (19:12 +0000)]
Standardize guarantees in record package.

19 years agoAdd unparser methods to URI record types.
Chris Hanson [Thu, 8 Sep 2005 18:51:30 +0000 (18:51 +0000)]
Add unparser methods to URI record types.

19 years agoIgnore attempt to link variable to itself.
Chris Hanson [Thu, 8 Sep 2005 02:31:19 +0000 (02:31 +0000)]
Ignore attempt to link variable to itself.

19 years agoDon't allow linking a variable to itself.
Chris Hanson [Thu, 8 Sep 2005 02:02:04 +0000 (02:02 +0000)]
Don't allow linking a variable to itself.

19 years agoAdd support for "Content-Transfer-Encoding: x-uuencode".
Chris Hanson [Wed, 7 Sep 2005 19:24:28 +0000 (19:24 +0000)]
Add support for "Content-Transfer-Encoding: x-uuencode".

19 years agoAdd decoder for uuencoded files.
Chris Hanson [Wed, 7 Sep 2005 19:20:09 +0000 (19:20 +0000)]
Add decoder for uuencoded files.

19 years agoDon't ever try MAP_FIXED unless we _know_ that the address range is
Chris Hanson [Mon, 22 Aug 2005 01:15:07 +0000 (01:15 +0000)]
Don't ever try MAP_FIXED unless we _know_ that the address range is
available.

19 years agoAdd updated support for valgrind.
Chris Hanson [Mon, 22 Aug 2005 01:07:05 +0000 (01:07 +0000)]
Add updated support for valgrind.

19 years agoEliminate some remnants of the "stacklet" design.
Chris Hanson [Sat, 20 Aug 2005 01:57:37 +0000 (01:57 +0000)]
Eliminate some remnants of the "stacklet" design.

19 years agoTry to prevent circular entity-reference chains from occurring.
Chris Hanson [Fri, 12 Aug 2005 13:17:30 +0000 (13:17 +0000)]
Try to prevent circular entity-reference chains from occurring.

19 years agoChange FLO:RANDOM-UNIT (and consequently RANDOM) to exclude zero when
Chris Hanson [Wed, 10 Aug 2005 18:16:59 +0000 (18:16 +0000)]
Change FLO:RANDOM-UNIT (and consequently RANDOM) to exclude zero when
generating floating-point random numbers.  Change initialization to
destructively modify *RANDOM-STATE* and DEFAULT-RANDOM-SOURCE.  Fix
bug: COPY-RANDOM-STATE! was copying the target to the source.

19 years agoEliminate some now-unused bindings.
Chris Hanson [Fri, 5 Aug 2005 20:04:19 +0000 (20:04 +0000)]
Eliminate some now-unused bindings.

19 years agoEliminate support for compiled C code.
Chris Hanson [Fri, 5 Aug 2005 20:03:05 +0000 (20:03 +0000)]
Eliminate support for compiled C code.

19 years agoFix fencepost error in handling of port width.
Chris Hanson [Thu, 4 Aug 2005 02:14:48 +0000 (02:14 +0000)]
Fix fencepost error in handling of port width.

19 years agoEliminate binding for primitive GC-SPACE-STATUS, since that binding is
Chris Hanson [Sun, 31 Jul 2005 02:59:37 +0000 (02:59 +0000)]
Eliminate binding for primitive GC-SPACE-STATUS, since that binding is
now in the global environment.

19 years agoUpdate copyright dates.
Chris Hanson [Sun, 31 Jul 2005 02:58:39 +0000 (02:58 +0000)]
Update copyright dates.

19 years agoEliminate use of primitive GET-NEXT-CONSTANT, which is to be removed
Chris Hanson [Sun, 31 Jul 2005 02:55:18 +0000 (02:55 +0000)]
Eliminate use of primitive GET-NEXT-CONSTANT, which is to be removed
from the microcode.  Instead use GC-SPACE-STATUS to implement
CONSTANT-SPACE/IN-USE.

19 years agoDon't use mmap_heap_malloc unless HEAP_IN_LOW_MEMORY is defined.
Chris Hanson [Sun, 24 Jul 2005 05:21:11 +0000 (05:21 +0000)]
Don't use mmap_heap_malloc unless HEAP_IN_LOW_MEMORY is defined.

19 years agoRewrite mmap_heap_malloc to search "/proc/NNNN/maps" for a suitable
Chris Hanson [Sun, 24 Jul 2005 05:19:44 +0000 (05:19 +0000)]
Rewrite mmap_heap_malloc to search "/proc/NNNN/maps" for a suitable
address.  Also, don't use mmap_heap_malloc unless HEAP_IN_LOW_MEMORY
is defined.

19 years agoUse 'OS_malloc' for default definition of 'HEAP_MALLOC', because the
Chris Hanson [Sun, 24 Jul 2005 05:10:03 +0000 (05:10 +0000)]
Use 'OS_malloc' for default definition of 'HEAP_MALLOC', because the
latter isn't allowed to return the null pointer.

19 years agoFix copyright date.
Chris Hanson [Sun, 24 Jul 2005 05:08:55 +0000 (05:08 +0000)]
Fix copyright date.

19 years agoRewrite 'strcmp_ci' to use 'toupper' from STDC rather than
Chris Hanson [Sun, 24 Jul 2005 05:08:30 +0000 (05:08 +0000)]
Rewrite 'strcmp_ci' to use 'toupper' from STDC rather than
non-standardized '_toupper'.

19 years agoDon't bother including <string.h> at all; instead trust that "ux.h"
Chris Hanson [Sun, 24 Jul 2005 05:06:40 +0000 (05:06 +0000)]
Don't bother including <string.h> at all; instead trust that "ux.h"
will do the right thing.

19 years agoUse OBJECT-GC-TYPE rather than PRIMITIVE-OBJECT-GC-TYPE.
Chris Hanson [Tue, 19 Jul 2005 03:49:26 +0000 (03:49 +0000)]
Use OBJECT-GC-TYPE rather than PRIMITIVE-OBJECT-GC-TYPE.

19 years agoRemove unused LOAD-PACKED-BINARIES.
Chris Hanson [Tue, 19 Jul 2005 03:48:44 +0000 (03:48 +0000)]
Remove unused LOAD-PACKED-BINARIES.

19 years agoFix bug: %WITHIN-CONTINUATION was being used in "thread.scm", and my
Chris Hanson [Sun, 17 Jul 2005 02:27:05 +0000 (02:27 +0000)]
Fix bug: %WITHIN-CONTINUATION was being used in "thread.scm", and my
last change broke the interface.

19 years agoFix some syntax errors only visible on Win32.
Chris Hanson [Sun, 17 Jul 2005 02:12:50 +0000 (02:12 +0000)]
Fix some syntax errors only visible on Win32.

19 years agoFix problem with decrementing of string length variable.
Chris Hanson [Sat, 16 Jul 2005 03:46:42 +0000 (03:46 +0000)]
Fix problem with decrementing of string length variable.

19 years agoEliminate non-reentrant continuations. Microcode 14.17 will drop
Chris Hanson [Sat, 16 Jul 2005 03:44:22 +0000 (03:44 +0000)]
Eliminate non-reentrant continuations.  Microcode 14.17 will drop
support for them.

19 years agoUpdate copyright statement.
Chris Hanson [Fri, 15 Jul 2005 05:33:08 +0000 (05:33 +0000)]
Update copyright statement.

19 years agoImplement ULONG/FIXNUM conversion macros.
Chris Hanson [Fri, 15 Jul 2005 05:31:58 +0000 (05:31 +0000)]
Implement ULONG/FIXNUM conversion macros.

19 years agoImplement ULONG/FIXNUM conversion macros.
Chris Hanson [Fri, 15 Jul 2005 05:31:42 +0000 (05:31 +0000)]
Implement ULONG/FIXNUM conversion macros.