]> gitweb.factorcode.org Git - factor.git/log
factor.git
12 years agoRefactor the lexer/parser to expose friendlier words for scanning tokens. The preferr...
Doug Coleman [Tue, 27 Sep 2011 20:20:07 +0000 (13:20 -0700)]
Refactor the lexer/parser to expose friendlier words for scanning tokens. The preferred top-level words now throw an exception on EOF.
CREATE -> scan-new
CREATE-CLASS -> scan-new-class
CREATE-WORD -> scan-new-word
CREATE-GENERIC -> scan-new-generic
scan -> (scan-token)
scan-token now throws on eof
(scan-word) returns word/number/f
scan-word now throws on eof
scan-word-name expects a non-number
Fixes #183.
Fixes #209.

12 years agohashtables.wrapped: re-adding prettyprint.
John Benediktsson [Tue, 27 Sep 2011 21:08:09 +0000 (14:08 -0700)]
hashtables.wrapped: re-adding prettyprint.

12 years agowebaps.help: display errors in red, add a main method.
John Benediktsson [Tue, 27 Sep 2011 17:20:15 +0000 (10:20 -0700)]
webaps.help: display errors in red, add a main method.

12 years agowebsites.concatenative: Wrap <help-webapp> in an <alloy> to display form errors....
John Benediktsson [Tue, 27 Sep 2011 17:17:54 +0000 (10:17 -0700)]
websites.concatenative: Wrap <help-webapp> in an <alloy> to display form errors.  Fixes #196.

12 years agohashtables.wrapped: adding prettyprint vocab.
John Benediktsson [Tue, 27 Sep 2011 15:40:02 +0000 (08:40 -0700)]
hashtables.wrapped: adding prettyprint vocab.

12 years agoRemove require for hashtables.wrapped.prettyprint
Doug Coleman [Tue, 27 Sep 2011 08:29:09 +0000 (01:29 -0700)]
Remove require for hashtables.wrapped.prettyprint

12 years agoSquashed commit of the following:
John Benediktsson [Tue, 27 Sep 2011 04:59:26 +0000 (21:59 -0700)]
Squashed commit of the following:

commit 7b6b0bdf21bca0856bfefc1859618e6e36b35d25
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Mon Sep 26 21:09:07 2011 -0700

    hashtables.wrapped: cleanup common prettyprint code.

commit aaed81f93dcfa295bd3dfd8102a5c39511209934
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Sun Sep 25 15:58:55 2011 -0700

    hashtables.wrapped: cleaner >foo-hashtable.

commit bb0f8379480935d1dcf482170e8e2a4a519d81d3
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Sun Sep 25 15:39:41 2011 -0700

    hashtables.identity: migrate to use hashtables.wrapped.

commit 2e71b3324f0803c15a55429acddc13f06b4876ae
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Sun Sep 25 15:39:19 2011 -0700

    hashtables.sequences: wrapped hashtable that uses "sequence=" for key comparison.

commit 040f33b40c424887d596af5c3bd9de0eef9a682e
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Sun Sep 25 15:39:05 2011 -0700

    hashtables.wrapped: base class for "wrapped hashtables".

12 years agogpu.state: use qualified for all c-types.
John Benediktsson [Tue, 27 Sep 2011 03:12:10 +0000 (20:12 -0700)]
gpu.state: use qualified for all c-types.

12 years agospecialized-arrays: remove unused -cast.
John Benediktsson [Tue, 27 Sep 2011 02:03:07 +0000 (19:03 -0700)]
specialized-arrays: remove unused -cast.

12 years agoFixes the symptom but not the problem. See bug #201.
Doug Coleman [Tue, 27 Sep 2011 00:21:51 +0000 (17:21 -0700)]
Fixes the symptom but not the problem. See bug #201.

12 years agospecialized-arrays: fix tests for >c-array change.
John Benediktsson [Mon, 26 Sep 2011 23:55:35 +0000 (16:55 -0700)]
specialized-arrays: fix tests for >c-array change.

12 years agovalues: fix docs (need to escape "\").
John Benediktsson [Mon, 26 Sep 2011 23:55:21 +0000 (16:55 -0700)]
values: fix docs (need to escape "\").

12 years agoTrim down a few using lists
Doug Coleman [Mon, 26 Sep 2011 20:42:32 +0000 (13:42 -0700)]
Trim down a few using lists

12 years agoMerge remote-tracking branch 'upstream/master'
John Benediktsson [Mon, 26 Sep 2011 20:37:42 +0000 (13:37 -0700)]
Merge remote-tracking branch 'upstream/master'

12 years agoalien.data: need to mark ">c-array" inline.
John Benediktsson [Mon, 26 Sep 2011 20:34:42 +0000 (13:34 -0700)]
alien.data: need to mark ">c-array" inline.

12 years agoFix typo on datagram docs
Doug Coleman [Mon, 26 Sep 2011 19:27:37 +0000 (12:27 -0700)]
Fix typo on datagram docs

12 years agoclasses.tuple: error-class should call-next-method before resetting itself.
John Benediktsson [Mon, 26 Sep 2011 18:54:55 +0000 (11:54 -0700)]
classes.tuple: error-class should call-next-method before resetting itself.

12 years agosee: revert prettyprint change for error-classes (for now display tuple).
John Benediktsson [Mon, 26 Sep 2011 18:51:19 +0000 (11:51 -0700)]
see: revert prettyprint change for error-classes (for now display tuple).

12 years agospecialized-arrays: performed some cleanup.
John Benediktsson [Sun, 25 Sep 2011 18:49:27 +0000 (11:49 -0700)]
specialized-arrays: performed some cleanup.

Specifically,
    •   Created >c-array to be replacement for >T-array.
    •   Created cast-array to be generic replacement for all T-array-cast words.
    •   Created c-array@ to be generic replacement for T-array@ words.
    •   Replaced usages of <T-array> with T <c-array>
    •   Replaced usages of <direct-T-array> with T <c-direct-array>
    •   Replaced usages of >T-array with T >c-array
    •   Replaced usages of T-array-cast with T cast-array
    •   Replaced usages of malloc-T-array with T malloc-array.
    •   Removed malloc-T-array.
    •   Removed T-array-cast.
    •   Removed T-array@.
    •   Removed >T-array.

I also added (but didn't change any code to use):
    •   T c-array-type, returns T-array
    •   T c-array?, returns T-array?
    •   c-array{ T ... }, returns T-array{ ... }

Bootstraps just find on Mac OS X.  Also `load-all test-all` works for me.

12 years agoassocs: improve stack effect docs for "?at".
John Benediktsson [Mon, 26 Sep 2011 18:32:20 +0000 (11:32 -0700)]
assocs: improve stack effect docs for "?at".

12 years agoRemoving "to:" syntax from values.
John Benediktsson [Mon, 26 Sep 2011 18:08:26 +0000 (11:08 -0700)]
Removing "to:" syntax from values.

Squashed commit of the following:

commit 18fef6bfa59f71dcb63b439f631c735848a9bbbb
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Mon Sep 26 11:02:26 2011 -0700

    vocabs.metadata: revert mistaken change.

commit 496b103b54034ea953882a039c08847d0eda0bb4
Author: John Benediktsson <mrjbq7@gmail.com>
Date:   Sun Sep 25 19:03:54 2011 -0700

    values: Removing "to:" syntax.

12 years agoclasses.tuple: adding test cases for error-class and support forget-class.
John Benediktsson [Mon, 26 Sep 2011 00:12:32 +0000 (17:12 -0700)]
classes.tuple: adding test cases for error-class and support forget-class.

12 years agoDefining an "error-class", and printing error tuples out with ERROR:. See #188.
John Benediktsson [Sun, 25 Sep 2011 23:33:08 +0000 (16:33 -0700)]
Defining an "error-class", and printing error tuples out with ERROR:.  See #188.

12 years agoFix the using for peek streams tests.
Doug Coleman [Mon, 26 Sep 2011 05:54:53 +0000 (22:54 -0700)]
Fix the using for peek streams tests.

12 years agoalarms: removing empty unused vocab.
John Benediktsson [Mon, 26 Sep 2011 05:36:26 +0000 (22:36 -0700)]
alarms: removing empty unused vocab.

12 years agoDecouple adding the coverage annotations from setting the flag in them
Doug Coleman [Mon, 26 Sep 2011 02:12:05 +0000 (19:12 -0700)]
Decouple adding the coverage annotations from setting the flag in them
Add a test-coverage word for reporting on only the unit-tests for a vocabulary

12 years agoRemove extra stack effects in windows.messages
Doug Coleman [Sun, 25 Sep 2011 20:17:03 +0000 (13:17 -0700)]
Remove extra stack effects in windows.messages

12 years agoRemove extraneous using from math/
Doug Coleman [Sun, 25 Sep 2011 20:14:21 +0000 (13:14 -0700)]
Remove extraneous using from math/

12 years agoExtraneous top-level stack-effect
Doug Coleman [Sun, 25 Sep 2011 20:11:07 +0000 (13:11 -0700)]
Extraneous top-level stack-effect

12 years agoPeekable streams wrapper
Doug Coleman [Sat, 17 Sep 2011 02:34:19 +0000 (21:34 -0500)]
Peekable streams wrapper

12 years agoVocabulary to reduce numbers to more convenient representations
Doug Coleman [Sat, 17 Sep 2011 02:37:39 +0000 (21:37 -0500)]
Vocabulary to reduce numbers to more convenient representations

12 years agobenchmark.ant: needed a MAIN.
John Benediktsson [Mon, 26 Sep 2011 02:08:56 +0000 (19:08 -0700)]
benchmark.ant: needed a MAIN.

12 years agovocabs: adding docs for 'parent-vocab?' and 'parent-vocabs'.
John Benediktsson [Mon, 26 Sep 2011 01:36:20 +0000 (18:36 -0700)]
vocabs: adding docs for 'parent-vocab?' and 'parent-vocabs'.

12 years agovocabs: adding 'parent-vocab?' and 'parent-vocabs'.
John Benediktsson [Mon, 26 Sep 2011 01:32:03 +0000 (18:32 -0700)]
vocabs: adding 'parent-vocab?' and 'parent-vocabs'.

12 years agoclasses.struct: add test cases for see on structs.
John Benediktsson [Mon, 26 Sep 2011 00:25:28 +0000 (17:25 -0700)]
classes.struct: add test cases for see on structs.

12 years agoimages.cocoa: removing unused image loader code.
John Benediktsson [Sun, 25 Sep 2011 23:41:11 +0000 (16:41 -0700)]
images.cocoa: removing unused image loader code.

12 years agobenchmark.ant: fix vocab name and using.
John Benediktsson [Sun, 25 Sep 2011 22:33:49 +0000 (15:33 -0700)]
benchmark.ant: fix vocab name and using.

12 years agobenchmark.ant: adding the "ant puzzle" benchmark. See #153.
John Benediktsson [Sun, 25 Sep 2011 19:25:52 +0000 (12:25 -0700)]
benchmark.ant: adding the "ant puzzle" benchmark.  See #153.

12 years agoui.gadgets.editors: simplify private word.
John Benediktsson [Sun, 25 Sep 2011 18:43:53 +0000 (11:43 -0700)]
ui.gadgets.editors: simplify private word.

12 years agoRemoving unused private words. See #132.
John Benediktsson [Sun, 25 Sep 2011 18:43:26 +0000 (11:43 -0700)]
Removing unused private words.  See #132.

12 years agotools.crossref: now 50% faster.
John Benediktsson [Sun, 25 Sep 2011 18:40:55 +0000 (11:40 -0700)]
tools.crossref: now 50% faster.

12 years agoFixing docs for recent stack effects additions.
John Benediktsson [Sun, 25 Sep 2011 05:08:54 +0000 (22:08 -0700)]
Fixing docs for recent stack effects additions.

12 years agoGraphviz now unix only
Doug Coleman [Sun, 25 Sep 2011 04:10:08 +0000 (21:10 -0700)]
Graphviz now unix only

12 years agosequences.product: fix help-lint for stack effect changes.
John Benediktsson [Sun, 25 Sep 2011 04:04:44 +0000 (21:04 -0700)]
sequences.product: fix help-lint for stack effect changes.

12 years agomath.blas, alien.fortran: move to unmaintained cuz I'm getting too old for this shit...
Joe Groff [Sun, 25 Sep 2011 03:59:21 +0000 (20:59 -0700)]
math.blas, alien.fortran: move to unmaintained cuz I'm getting too old for this shit. closes #171

12 years agoimages: only register with the images.loader on proper platform. Fixes #172. Fixes...
John Benediktsson [Sun, 25 Sep 2011 02:19:34 +0000 (19:19 -0700)]
images: only register with the images.loader on proper platform.  Fixes #172. Fixes #173.

12 years agoclasses.struct: Fix prettyprint for PACKED-STRUCT. Fixes #162.
John Benediktsson [Sun, 25 Sep 2011 00:55:13 +0000 (17:55 -0700)]
classes.struct: Fix prettyprint for PACKED-STRUCT. Fixes #162.

12 years agoUse gvplugin_list instead of gvPluginList
Doug Coleman [Sat, 24 Sep 2011 23:50:58 +0000 (18:50 -0500)]
Use gvplugin_list instead of gvPluginList
Make graphviz unix only for several reasons:
1) Win32 graphviz doesn't have the gvplugin_list() exported and we don't have a word to check if an ffi call exists before attempting to call it so we are unable to find a two-state solution with both gvplugin_list and gvPluginList
2) Compiling the Graphviz Project on Windows is extremely broken under Cygwin, MinGW and Visual Studio 2008 and fails to compile without major changes and still has disabled projects and thousands of warnings/errors. Th HOWTO on their website is outdated on all counts and the maintainer has not replied to my email asking for help. I do not have time to be a Graphviz maintainer myself.
3) When I did manage to compile it on Windows, none of the engines are avaialable to the dlls we load so the compiled Graphviz has no features except symbol exports. The same is true for the binary package--we do not have access to the
4) There is no win64 binary of Graphviz on their website and compiling it would likely result in an unusable set of dlls as per above

12 years agosequences.product: improve stack effects.
John Benediktsson [Fri, 23 Sep 2011 17:19:48 +0000 (10:19 -0700)]
sequences.product: improve stack effects.

12 years agomath.order: Removing stack effect (not quite right).
John Benediktsson [Fri, 23 Sep 2011 00:30:56 +0000 (17:30 -0700)]
math.order: Removing stack effect (not quite right).

12 years agoAdding stack effects.
John Benediktsson [Fri, 23 Sep 2011 00:19:51 +0000 (17:19 -0700)]
Adding stack effects.

12 years agoalien.data: removing unused (and broken?) "require-c-array".
John Benediktsson [Fri, 23 Sep 2011 18:39:33 +0000 (11:39 -0700)]
alien.data: removing unused (and broken?) "require-c-array".

12 years agomath.functions: clean up some more to trim back load-time dependencies; alter tests...
Joe Groff [Thu, 22 Sep 2011 23:04:49 +0000 (16:04 -0700)]
math.functions: clean up some more to trim back load-time dependencies; alter tests to avoid inexact float constants where possible and hex-ify inexact constants otherwise

12 years agomath.functions: inline 'on-bits' per Joe Groff's suggestion.
John Benediktsson [Thu, 22 Sep 2011 20:44:30 +0000 (13:44 -0700)]
math.functions: inline 'on-bits' per Joe Groff's suggestion.

12 years agomath.functions: rename 'bignum-log-helper'.
John Benediktsson [Thu, 22 Sep 2011 19:38:33 +0000 (12:38 -0700)]
math.functions: rename 'bignum-log-helper'.

12 years agomath.functions: duplicate on-bits to avoid circular dependency on math.bitwise.
John Benediktsson [Thu, 22 Sep 2011 19:23:16 +0000 (12:23 -0700)]
math.functions: duplicate on-bits to avoid circular dependency on math.bitwise.

12 years agomath.functions: test log with negative (really) bignums.
John Benediktsson [Thu, 22 Sep 2011 18:15:06 +0000 (11:15 -0700)]
math.functions: test log with negative (really) bignums.

12 years agomath.functions: add forgotten imports and fix between? check.
John Benediktsson [Thu, 22 Sep 2011 17:00:22 +0000 (10:00 -0700)]
math.functions: add forgotten imports and fix between? check.

12 years agomath.functions: implement "frexp" and support log of really big numbers. Fixes #160.
John Benediktsson [Thu, 22 Sep 2011 16:42:28 +0000 (09:42 -0700)]
math.functions: implement "frexp" and support log of really big numbers. Fixes #160.

12 years agoAdd STRUCT: syntax to alien.endian. Test and document the changes.
Doug Coleman [Thu, 22 Sep 2011 16:26:06 +0000 (11:26 -0500)]
Add STRUCT: syntax to alien.endian. Test and document the changes.

12 years agoalien: fix docs (add space between sentences).
John Benediktsson [Thu, 22 Sep 2011 02:33:23 +0000 (19:33 -0700)]
alien: fix docs (add space between sentences).

12 years agoinfix: using "if-empty" makes it cleaner.
John Benediktsson [Thu, 22 Sep 2011 02:31:26 +0000 (19:31 -0700)]
infix: using "if-empty" makes it cleaner.

12 years agomongodb: using "if-empty" makes it cleaner.
John Benediktsson [Thu, 22 Sep 2011 02:31:08 +0000 (19:31 -0700)]
mongodb: using "if-empty" makes it cleaner.

12 years agofactor.vim: fix syntax highlight for exponentials (i.e. "1.5e10").
John Benediktsson [Thu, 22 Sep 2011 02:29:56 +0000 (19:29 -0700)]
factor.vim: fix syntax highlight for exponentials (i.e. "1.5e10").

12 years agoAdd c-types in alien.endian for making endian-aware STRUCTs.
Doug Coleman [Wed, 21 Sep 2011 21:04:17 +0000 (16:04 -0500)]
Add c-types in alien.endian for making endian-aware STRUCTs.

12 years agoAdd more unit-tests and docs for math.bitwise. Fix a bug with >signed so that it...
Doug Coleman [Wed, 21 Sep 2011 19:55:50 +0000 (14:55 -0500)]
Add more unit-tests and docs for math.bitwise. Fix a bug with >signed so that it truncates a number to however many bits you tell it the number is before doing the calculation.

12 years agoFix sequences docs for change-nth stack effect and example needed using section
Doug Coleman [Wed, 21 Sep 2011 15:09:03 +0000 (10:09 -0500)]
Fix sequences docs for change-nth stack effect and example needed using section

12 years agosequences: adding stack effects for change-nth, map-integers, and interleave.
John Benediktsson [Tue, 20 Sep 2011 03:49:57 +0000 (20:49 -0700)]
sequences: adding stack effects for change-nth, map-integers, and interleave.

12 years agoRevert "classes.singleton: fix "summary" of singletons. Fixes #145."
John Benediktsson [Tue, 20 Sep 2011 00:46:52 +0000 (17:46 -0700)]
Revert "classes.singleton: fix "summary" of singletons. Fixes #145."

This reverts commit d820c86974e5317d02ac43a1c32b1aa5f56f872b.

12 years agoRevert "classes.mixin: fix definitions for MIXIN:."
John Benediktsson [Tue, 20 Sep 2011 00:46:40 +0000 (17:46 -0700)]
Revert "classes.mixin: fix definitions for MIXIN:."

This reverts commit f625612f8948db90558d299d6037ee3c155d7c90.

12 years agoclasses.mixin: fix definitions for MIXIN:.
John Benediktsson [Tue, 20 Sep 2011 00:22:50 +0000 (17:22 -0700)]
classes.mixin: fix definitions for MIXIN:.

12 years agoclasses.singleton: fix "summary" of singletons. Fixes #145.
John Benediktsson [Mon, 19 Sep 2011 23:49:11 +0000 (16:49 -0700)]
classes.singleton: fix "summary" of singletons. Fixes #145.

12 years agoxml.tests: fix encoding test for latin5. Fixes #144.
John Benediktsson [Mon, 19 Sep 2011 23:28:18 +0000 (16:28 -0700)]
xml.tests: fix encoding test for latin5.  Fixes #144.

12 years agoslots: pre-create the "at", "nth", and "global" slots to make deterministic the curre...
Joe Groff [Mon, 19 Sep 2011 02:00:30 +0000 (19:00 -0700)]
slots: pre-create the "at", "nth", and "global" slots to make deterministic the currently nondeterministic ambiguity between accessors:change-* and assocs:change-at, sequences:change-nth, and namespaces:change-global

12 years agoMove javascriptcore to unmaintained. Fixes #130
Slava Pestov [Mon, 19 Sep 2011 07:12:14 +0000 (00:12 -0700)]
Move javascriptcore to unmaintained. Fixes #130

12 years agosee: revert change for ALIAS (since it breaks parsing prettyprint). See #120.
John Benediktsson [Mon, 19 Sep 2011 05:43:02 +0000 (22:43 -0700)]
see: revert change for ALIAS (since it breaks parsing prettyprint).  See #120.

12 years agoRevert "spread>quot now outputs empty quotations where you would expect so that thing...
Doug Coleman [Mon, 19 Sep 2011 04:41:49 +0000 (23:41 -0500)]
Revert "spread>quot now outputs empty quotations where you would expect so that things like { [ ] [ ] } spread infer as ( x x -- x x ) instead of ( -- )"

This causes problems in bootstrap and in make-images. Revisit sometime in the future...
This reverts commit 004b20df12745bd8feabcdde5b9ae2780dcb36ee.

12 years agospread>quot now outputs empty quotations where you would expect so that things like...
Doug Coleman [Mon, 19 Sep 2011 04:23:53 +0000 (23:23 -0500)]
spread>quot now outputs empty quotations where you would expect so that things like { [ ] [ ] } spread infer as ( x x -- x x ) instead of ( -- )
Fixes #139

12 years agoRemove Windows CE from core/ basis/ and build-support/
Doug Coleman [Mon, 19 Sep 2011 01:25:06 +0000 (20:25 -0500)]
Remove Windows CE from core/ basis/ and build-support/
Rename the winnt singleton to windows in core/ basis/ extra/
Rename boot images winnt -> windows
Fixes #84.

12 years agofuel.eval: some minor cleanup.
John Benediktsson [Mon, 19 Sep 2011 03:35:16 +0000 (20:35 -0700)]
fuel.eval: some minor cleanup.

12 years agofuel.eval: using a local fuel-eval-error symbol. Fixes #142.
John Benediktsson [Mon, 19 Sep 2011 03:19:49 +0000 (20:19 -0700)]
fuel.eval: using a local fuel-eval-error symbol.  Fixes #142.

12 years agonew vocab slots.macros: macro interface to slot accessors, as discussed in #134
Joe Groff [Mon, 19 Sep 2011 00:33:53 +0000 (17:33 -0700)]
new vocab slots.macros: macro interface to slot accessors, as discussed in #134

12 years agosee: show stack effects for ALIAS: definitions. Fixes #120.
John Benediktsson [Sun, 18 Sep 2011 23:59:14 +0000 (16:59 -0700)]
see: show stack effects for ALIAS: definitions.  Fixes #120.

12 years agoui.tools.listener.completion: when completing history, only show unique completions.
John Benediktsson [Sat, 17 Sep 2011 16:53:59 +0000 (09:53 -0700)]
ui.tools.listener.completion: when completing history, only show unique completions.

12 years agoui.tools.listener.completion: delay history-list to allow live searching.
John Benediktsson [Sat, 17 Sep 2011 16:06:10 +0000 (09:06 -0700)]
ui.tools.listener.completion: delay history-list to allow live searching.

12 years agoui.tools.listener.completion: allow substring search in history. Fixes #133.
John Benediktsson [Sat, 17 Sep 2011 16:04:36 +0000 (09:04 -0700)]
ui.tools.listener.completion: allow substring search in history. Fixes #133.

12 years agotools.completion: add test that empty completions preserve order.
John Benediktsson [Sat, 17 Sep 2011 16:00:43 +0000 (09:00 -0700)]
tools.completion: add test that empty completions preserve order.

12 years agosets: update docs for "combine".
John Benediktsson [Sat, 17 Sep 2011 15:11:48 +0000 (08:11 -0700)]
sets: update docs for "combine".

12 years agoui.tools.profiler: fix link to help.
John Benediktsson [Sat, 17 Sep 2011 14:12:53 +0000 (07:12 -0700)]
ui.tools.profiler: fix link to help.

12 years agolexer: more clear code.
John Benediktsson [Sat, 17 Sep 2011 04:54:17 +0000 (21:54 -0700)]
lexer: more clear code.

12 years agocompiler.tree.escape-analysis.allocations: simplify stack effect.
John Benediktsson [Sat, 17 Sep 2011 04:52:48 +0000 (21:52 -0700)]
compiler.tree.escape-analysis.allocations: simplify stack effect.

12 years agoassocs: adding tests for "assoc-stack".
John Benediktsson [Sat, 17 Sep 2011 04:52:14 +0000 (21:52 -0700)]
assocs: adding tests for "assoc-stack".

12 years agoGraphviz's gvc.dll doesn't export gvplugin_list() on Windows, so call gvPluginList...
Doug Coleman [Fri, 16 Sep 2011 06:23:52 +0000 (01:23 -0500)]
Graphviz's gvc.dll doesn't export gvplugin_list() on Windows, so call gvPluginList() instead. This bug has been reported to the Windows Graphviz maintainer, so we can potentially go back to calling gvplugin_list() someday.

12 years agohelp.markup: add tests
Joe Groff [Thu, 15 Sep 2011 22:52:31 +0000 (15:52 -0700)]
help.markup: add tests

12 years agohelp.markup: change related-words to notify definition observers for the affected...
Joe Groff [Thu, 15 Sep 2011 21:40:37 +0000 (14:40 -0700)]
help.markup: change related-words to notify definition observers for the affected words and to update the relations of formerly-related words; fixes #28

12 years agowords: move change-word-prop from delegate.private to words
Joe Groff [Thu, 15 Sep 2011 21:39:24 +0000 (14:39 -0700)]
words: move change-word-prop from delegate.private to words

12 years agoui.tools.deploy: change "Deploy as Windows console application" to read "Deploy as...
Joe Groff [Thu, 15 Sep 2011 22:05:17 +0000 (15:05 -0700)]
ui.tools.deploy: change "Deploy as Windows console application" to read "Deploy as console application on Windows"; makes it a bit clearer that the switch only affects Windows deployment

12 years agoui.backend: refactor the UI `main-vocab-hook` to use a backend-specific `ui-backend...
Joe Groff [Thu, 15 Sep 2011 18:27:16 +0000 (11:27 -0700)]
ui.backend: refactor the UI `main-vocab-hook` to use a backend-specific `ui-backend-available?` word, so that loading other backends doesn't change the `main-vocab-hook` out of sync with the backend; fixes #131

12 years agojson.reader: cleanup and speed up when handling heavily escaped strings.
John Benediktsson [Thu, 15 Sep 2011 14:59:17 +0000 (07:59 -0700)]
json.reader: cleanup and speed up when handling heavily escaped strings.

12 years agoui.tools.listener.history: only add a history entry if it does not match the most...
John Benediktsson [Thu, 15 Sep 2011 14:57:51 +0000 (07:57 -0700)]
ui.tools.listener.history: only add a history entry if it does not match the most recent entry.