Jan Nieuwenhuizen [Tue, 20 Dec 2016 20:22:21 +0000 (21:22 +0100)]
Add abs.
* module/mes/scm.mes (abs): New function.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 21:28:29 +0000 (22:28 +0100)]
core: Bugfix unread_byte.
* mes.c (unread_byte): Return SCM value instead of stray int.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 19:10:43 +0000 (20:10 +0100)]
Add ash.
* math.c (ash): New function.
* tests/scm.test (ash, ash -1): New tests.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 19:12:47 +0000 (20:12 +0100)]
Support (sxml xpath) for Nyacc c99.
* module/sxml/xpath.mes: New file.
* module/sxml/xpath.upstream.mes: Import from Guile.
* AUTHORS: Mention it.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 19:11:35 +0000 (20:11 +0100)]
Partial (rnrs arithmetic bitwise) support for Nyacc c99.
* module/rnrs/arithmetic/bitwise.mes: New file.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 18:13:31 +0000 (19:13 +0100)]
Nicer closure and builtin procedure display.
* display.c (display): Show closure as procedure with formal
parameters. Display ariry as fake parameters with builtin.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 18:01:00 +0000 (19:01 +0100)]
Add string->number.
* module/mes/scm.mes (string->number): New function.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 14:48:10 +0000 (15:48 +0100)]
Add unless.
* module/mes/scm.mes (unless): New syntax.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 18:25:26 +0000 (19:25 +0100)]
Add iota.
* module/mes/scm.mes: (iota): New function.
* tests/scm.test (iota, iota 0, iota -1): New tests.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 10:31:46 +0000 (11:31 +0100)]
Partial srfi-43 support for Nyacc.
* module/srfi/srfi-43.mes: New file.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 11:26:20 +0000 (12:26 +0100)]
Partial srfi-14 support for Nyacc.
* module/srfi/srfi-14.mes: New file.
* tests/srfi-14.test: New file.
* GNUmakefile (TESTS): Add it.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 10:19:40 +0000 (11:19 +0100)]
Add delete, delq, vector-copy.
* module/mes/scm.mes (filter, delete, delq, vector-copy): New functions.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 09:57:09 +0000 (10:57 +0100)]
Add negative?, positive?, zero?, 1+ 1-.
* module/mes/scm.mes (negative?, positive?, zero?, 1+, 1-): New functions.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 09:44:43 +0000 (10:44 +0100)]
Add missing srfi-1 functions for Nyacc.
* module/srfi/srfi-1.scm (fold, fold-right, remove, append-reverse,
remove!): New functions.
* tests/srfi-1.test: New file.
* GNUmakefile (TESTS): Add it.
* module/srfi/srfi-1.upstream.mes: Import bits from Guile-1.8.
* AUTHORS: Mention it.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 09:41:39 +0000 (10:41 +0100)]
Add even?, odd?.
* module/mes/scm.mes (even?, odd?): New function.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 11:23:10 +0000 (12:23 +0100)]
Bugfix: for-each with two lists.
* module/mes/scm.mes (for-each): Fix for two lists. Always return *unspecified*.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 08:03:05 +0000 (09:03 +0100)]
Add and=>.
* module/mes/base.scm (and=>): New function.
Jan Nieuwenhuizen [Tue, 20 Dec 2016 06:51:50 +0000 (07:51 +0100)]
Add eqv?.
* module/mes/base.scm (eqv?): New function.
Jan Nieuwenhuizen [Mon, 19 Dec 2016 18:35:38 +0000 (19:35 +0100)]
Closure is not a pair.
* module/mes/base.mes (closure_p, mes_car, mes_cdr): New function.
(pair_p): Closure is not a pair.
* NEWS: Mention it.
* psyntax-0.mes (self-evaluating?): Add closure?.
Jan Nieuwenhuizen [Mon, 19 Dec 2016 18:32:17 +0000 (19:32 +0100)]
Bugfix: support map^3.
* module/mes/base-0.scm (map): Support third list, add more visible
error when used with 4 or more list.
Jan Nieuwenhuizen [Fri, 16 Dec 2016 14:10:03 +0000 (15:10 +0100)]
Resurrect quasisyntax support.
* mes.c (the_unsyntaxers): New symbol.
(mes_builtins)[QUASISYNTAX]: Initialize it, add to environment.
* quasiquote.c (add_unsyntaxers): Use it.
(vm_eval_quasisyntax): New function.
(eval_quasisyntax): Use it.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 15:05:35 +0000 (16:05 +0100)]
Add psyntax-based srfi-9.
* module/srfi/srfi-9-psyntax.mes: New file.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 14:48:49 +0000 (15:48 +0100)]
Add support for including Guile files.
* module/mes/guile.mes: New file.
* module/mes/pretty-print.mes: New file.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 14:43:06 +0000 (15:43 +0100)]
Support include and include-from-path.
* module/mes/base-0.mes (include, include-from-path): New function.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 14:39:12 +0000 (15:39 +0100)]
Support backslash in string.
* reader.c (read_string): Handle '\\'.
* tests/read.test: Add it.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 14:21:05 +0000 (15:21 +0100)]
Support #\alarm, #\vtab.
* mes.c (char_alarm): New variable.
(char_vtab): Rename from char_vt.
* reader.c (read_character): Add alarm, update vtab.
* display.c (display): Likewise.
* module/language/c/lexer.mes (read-string): Use vtab.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 09:11:22 +0000 (10:11 +0100)]
Support non-nested #| |# comment.
* module/mes/read-0.mes (read-word, read-block-comment): Implement #|.
* reader.c (read_word, read_block_comment)[READER]: Likewise.
* tests/read.test: Test it.
* NEWS: Mention it.
Jan Nieuwenhuizen [Sun, 18 Dec 2016 09:02:49 +0000 (10:02 +0100)]
Support #; comment.
* module/mes/read-0.mes (read-word): Implement #;.
* reader.c (read_word)[READER]: Likewise.
* tests/read.test: Test it.
* NEWS: Mention it.
Jan Nieuwenhuizen [Sat, 17 Dec 2016 21:21:46 +0000 (22:21 +0100)]
Minimal syntactic exception support.
* module/mes/catch.mes: New file.
* tests/catch.test: New file.
* GNUmakefile (TEST): Add it.
Jan Nieuwenhuizen [Sat, 17 Dec 2016 13:51:45 +0000 (14:51 +0100)]
Minimal syntactic fluids support.
* module/mes/fluids.mes: New file.
* tests/fluids.test: New file.
* GNUmakefile (TESTS): Add it.
Jan Nieuwenhuizen [Sat, 17 Dec 2016 14:42:44 +0000 (15:42 +0100)]
Add string-prefix?, symbol-prefix, symbol-append.
* module/mes/scm.mes (string-prefix?, symbol-prefix, symbol-append):
New function,
Jan Nieuwenhuizen [Sat, 17 Dec 2016 13:44:34 +0000 (14:44 +0100)]
Add list-head, list-tail.
* module/mes/scm (list-head, list-tail): New function.
Jan Nieuwenhuizen [Sat, 17 Dec 2016 13:43:42 +0000 (14:43 +0100)]
core: Bugfix number-based-cells: allow displaying (current-module).
* display.c (display): Handle cell_symbol_quote as symbol.
Jan Nieuwenhuizen [Wed, 21 Dec 2016 16:08:36 +0000 (17:08 +0100)]
Make guile switchable in GNUmakefile.
* GNUmakefile (GUILE): New variable. Update users.
* guile/mes-0.scm (mes?, guile-1.8?, guile-2?): New variables.
* module/mes/base.mes (guile?): Remove.
* module/mes/base-0.mes (effective-version, mes?, guile?, guile-1.8?,
guile-2?): New variables.
* tests/cwv.test: Support Guile 1.8.
Jan Nieuwenhuizen [Sat, 17 Dec 2016 09:57:38 +0000 (10:57 +0100)]
Resurrect guile-mescc with guile-2.1.5.
* scripts/include.mes: Grep all files.
* GNUmakefile (mescc.cat): Update for mes-use-module; list all toplevel inputs.
* module/language/c/lexer.mes: Use (system base lalr).
* module/language/c/parser.mes: Likewise.
* module/language/c/compiler.mes: Likewise. Remove encoding on output port.
* scripts/mescc.mes: Remove BROKEN comment.
Jan Nieuwenhuizen [Sun, 25 Dec 2016 10:13:51 +0000 (11:13 +0100)]
optargs guile
Jan Nieuwenhuizen [Fri, 16 Dec 2016 22:34:08 +0000 (23:34 +0100)]
Support Guile optargs.
* module/mes/optargs.upstream.mes: Import latest non-syntax-case
version from Guile.
* AUTHORS: Add it.
* module/mes/optargs.scm: New file.
* tests/optargs.test: New file.
* GNUmakefile (TESTS): Add it.
* NEWS: Update.
Jan Nieuwenhuizen [Fri, 16 Dec 2016 19:18:38 +0000 (20:18 +0100)]
Support => in cond.
* module/mes/base-0.mes (cond): Support =>.
* module/mes/rea-0.mes (cond): Update.
* NEWS: Update.
Jan Nieuwenhuizen [Fri, 16 Dec 2016 22:30:33 +0000 (23:30 +0100)]
core: Support keywords.
* display.c (display): Handle keyword.
* mes.c (type_t): Add KEYWORD.
(eq_p): Handle it.
(make_keyword): New function.
* reader.c (lookup): Use it.
* type.c (keyword_p): New function.
* NEWS: Update.
Jan Nieuwenhuizen [Fri, 16 Dec 2016 17:30:54 +0000 (18:30 +0100)]
Handle form-feed.
* module/mes/read-0.mes (eat-whitespace, read-word): Handle form-feed.
* reader.c (eat_whitespace, read_word): Likewise.
Jan Nieuwenhuizen [Wed, 14 Dec 2016 18:02:19 +0000 (19:02 +0100)]
core: Make symbols constants.
* mes.c (apply_env,eval_env): Rewrite using switch.
* build-aux/mes-snarf.scm (symbol->header): Define constants.
(symbol->source): Only update g_free and init cells.
Jan Nieuwenhuizen [Tue, 13 Dec 2016 18:58:34 +0000 (19:58 +0100)]
Extend Scheme reader, reduce C reader dependency.
* mes.c (bload_env): Mark as internal.
(load_env): Likewise. Load Scheme reader from source. Remove dumping.
(dump): New function.
* (vm_begin_env): Allow for gc while read_input_file_env.
(mes_builtins): Add *dot*.
(read_input_file_env)[!READER]: Invoke read-input-file.
* module/mes/read-0.mes (read-env): New function.
(read-word): Support quasisyntax.
Remove usage of ' thoughout.
* module/mes/repl.mes (repl): Use read instead of read-env.
* guile/mes.scm (environment): Add *dot*.
* guile/reader.mes: Update.
* NEWS: Update.
Jan Nieuwenhuizen [Tue, 13 Dec 2016 19:55:50 +0000 (20:55 +0100)]
Silence garbage collector.
* GNUmakefile: unexport MES_DEBUG.
Jan Nieuwenhuizen [Tue, 13 Dec 2016 06:14:59 +0000 (07:14 +0100)]
Update README.
* README: Add a paragraph with current status.
Jan Nieuwenhuizen [Mon, 12 Dec 2016 20:01:31 +0000 (21:01 +0100)]
guix hash: 0nbdjvmsyarp4vfg3r9hhhnabv11z1b7isw4g09x3kjd0r1lx0mh
Jan Nieuwenhuizen [Mon, 12 Dec 2016 20:00:02 +0000 (21:00 +0100)]
Release 0.3.
* configure (VERSION): Bump to 0.3.
* mes.c (main): Likewise.
* module/mes/repl.mes: Likewise.
Jan Nieuwenhuizen [Mon, 12 Dec 2016 19:07:17 +0000 (20:07 +0100)]
Update Mes in Guile.
* guile/mes.scm: Update for guile-2.2.
* guile/mes.mes: Update from module/mes/mes-0.mes.
* guile/reader.mes: Update from module/mes/read-0.mes.
Jan Nieuwenhuizen [Mon, 12 Dec 2016 14:41:48 +0000 (15:41 +0100)]
Resurrect Mes in Guile.
* guile/mes.mes: New file, from the archives.
* guile/mes.scm: Updates.
Jan Nieuwenhuizen [Sun, 11 Dec 2016 19:13:56 +0000 (20:13 +0100)]
Avoid garbage returns.
* posix.c (set-current-input-port): Return current-input-port.
(force_output): Return scm_unspecified.
Jan Nieuwenhuizen [Sat, 10 Dec 2016 21:47:13 +0000 (22:47 +0100)]
Update documentation.
* README: Add make targets.
* INSTALL: Add guix.
* HACKING: Add info on sc.
Jan Nieuwenhuizen [Sun, 11 Dec 2016 17:40:42 +0000 (18:40 +0100)]
core: Resurrect QUASIQUOTE=0.
* mes.c (mes_builtins) [!QUASIQUOTE]: Do not add unquoters.
* module/mes/base-0.mes (push!, pop!, load, mes-use-module): Rewrite
without quasiquote.
* module/mes/quasiquote.mes (quasiquote): Rewrite using if, and.
* module/srfi/srfi-0 (cond-expand): Rewrite without quasiquote.
Jan Nieuwenhuizen [Wed, 7 Dec 2016 19:26:41 +0000 (20:26 +0100)]
Add loadable modules.
* module/mes/base-0.mes (mes-use-module): Implement.
* module/mes: Update users.
* HACKING: Update.
* NEWS: Update.
* configure (main): Use shell expansion for prefix.
* make/install.make (install): Substitute prefix.
Jan Nieuwenhuizen [Wed, 7 Dec 2016 22:27:44 +0000 (23:27 +0100)]
Use syntax rather than psyntax.
* module/language/c/parser.mes: Switch to syntax.
* module/language/paren.mes: Likewise
* scripts/mescc.mes: Likewise
* scripts/paren.mes: Likewise
* scripts/repl.mes: Likewise
* tests/let-syntax.test: Likewise
* tests/match.test: Likewise
* tests/record.test: Likewise
Jan Nieuwenhuizen [Wed, 7 Dec 2016 22:51:07 +0000 (23:51 +0100)]
Resurrect syntax.mes.
* module/mes/syntax.mes: New file.
* AUTHORS: List it.
Jan Nieuwenhuizen [Mon, 21 Nov 2016 20:43:06 +0000 (21:43 +0100)]
core: use FIXED_PRIMITIVES rather than environment cache.
* cache.c: Remove.
* define.c: Remove callers.
* mes.c: Likewise.
(vm_eval_env) [FIXED_PRIMITIVES]: Hardcode car, cdr, cons, null_p.
* GNUmakefile: Update.
Jan Nieuwenhuizen [Sun, 11 Dec 2016 17:41:08 +0000 (18:41 +0100)]
core: Set max arena size.
* mes.c (MAX_ARENA_SIZE): New global.
(gc): Use it.
Jan Nieuwenhuizen [Sun, 11 Dec 2016 07:50:51 +0000 (08:50 +0100)]
core: Make arena size configurable.
* mes.c (main): Read MES_ARENA.
* scripts/repl.mes: Set MES_ARENA to
5000000 if not already set.
Fixes repl startup.
Jan Nieuwenhuizen [Sun, 11 Dec 2016 07:23:15 +0000 (08:23 +0100)]
core: Grow gc arena gradually.
* mes.c: (gc_up_arena): New function.
(gc): Use it when possible.
(gc_init_cells, gc_init_news): New function.
(mes_symbols): Use them.
Jan Nieuwenhuizen [Sat, 10 Dec 2016 11:07:04 +0000 (12:07 +0100)]
core: gc bugfixes.
* mes.c (make_tmps): New function.
(make_symbols, gc): Use it.
(vm_call_with_values_env): New vm function.
(call-with-values): Call it.
(eval_env): Do not call eval_env inline.
* define.c (vm_define_env): Use r2 rather than local name.
(g_symbols): Rename from symbols.
Jan Nieuwenhuizen [Mon, 21 Nov 2016 08:36:32 +0000 (09:36 +0100)]
core: Split-off cache, display, reader.
* mes.c: Remove cache, display, reader functions.
* cache.c: New file.
* display.c: New file.
* reader.c: New file.
Jan Nieuwenhuizen [Sat, 19 Nov 2016 22:25:24 +0000 (23:25 +0100)]
Add reader in Scheme.
* module/mes/read-0.mes: New file.
* mes.c (char_to_integer, integer_to_char, null_p): Move to core.
(peek_byte, read_byte, unread_byte): New function.
(main): --dump, --load: New option.
* lib.c (char_to_integer, integer_to_char): Remove.
* NEWS: Update.
Jan Nieuwenhuizen [Mon, 21 Nov 2016 08:30:59 +0000 (09:30 +0100)]
core: Cleanup cells.
* mes.c: Use accessors rather than g_cell[] access throughout.
Jan Nieuwenhuizen [Sat, 19 Nov 2016 21:31:30 +0000 (22:31 +0100)]
core: Add function indirection.
* mes.c (functions): New array.
(scm_t): Change function pointer to index.
(make_cell): Handle function.
(call): Update for function change.
(display_): Likewise.
(make_function): New function.
* build-aux/mes-snarf.scm (function->source): Update declarations.
(function->environment): New function.
Jan Nieuwenhuizen [Mon, 21 Nov 2016 08:28:34 +0000 (09:28 +0100)]
core: Number based cells.
* mes.c (scm_t): Change car, string, ref, cdr, macro, vector into g_cell index
[WAS]: scm_t pointer.
* define.c: Update.
* lib.c: Update.
* math.c: Update.
* posix.c: Update.
* quasiquote.c: Update.
* string.c: Update.
* type.c: Update.
* build-aux/mes-snarf.mes Update.
* tests/gc-4.test: New test.
* tests/gc-5.test: New test.
* tests/gc-6.test: New test.
Jan Nieuwenhuizen [Fri, 28 Oct 2016 16:42:03 +0000 (18:42 +0200)]
core: Integrate garbage collector/jam scraper.
* mes.c (r0, r1, r2, r3, stack): New globals.
(gc_loop): Handle MACRO and SCM.
(gc_copy): Handle FUNCTION, allow for pre-allocated SCM and SYMBOL.
(assq): Flag any BROKEN_HEARTs.
(vm_call): New function. Enables moving C stack to GC stack.
(evlis_env, apply_env, eval_env, expand_macro_env, begin_env,
if_env): Use vm_call-indirection.
(call_lambda): New function.
(vm_apply_env): Rename from apply_env. Remove parameters, instead
use r1, r2 and r0.
(vm_evlis_env, vm_eval_env, vm_expand_macro_env, vm_begin_env,
vm_if_env): Likewise.
(acons): New function.
(mes_environment) [!MES_FULL, MES_MINI]: Add cpp switches to create minimally
filled environment, for debugging.
(main): Print free value at exit.
* define.c (define_env): Use vm_call-indirection.
(vm_define_env): Rename from define_env.
* quasiquote.c (eval_quasiquote): Use vm_call-indirection.
(vm_eval_quasiquote): Rename from eval_quasiquote.
* tests/gc-2.test: New test.
tests/gc-2a.test: New test.
tests/gc-3.test: New test.
Jan Nieuwenhuizen [Thu, 27 Oct 2016 19:00:08 +0000 (21:00 +0200)]
Add sicp garbage example: tests/gc-1.test.
Jan Nieuwenhuizen [Thu, 27 Oct 2016 18:46:29 +0000 (20:46 +0200)]
core: Make using GC in switchable, set to off; on dumps core.
Jan Nieuwenhuizen [Thu, 27 Oct 2016 14:44:09 +0000 (16:44 +0200)]
core: Add garbage collector/jam collector experiment.
* mes.c (gc, gc_loop, gc_copy, gc_move, gc_relocate_car,
gc_relocate_cdr, gc_flip): New function.
* tests/gc-0.test: New file.
Jan Nieuwenhuizen [Wed, 26 Oct 2016 17:54:03 +0000 (19:54 +0200)]
Add mes gc test setup.
* tests/gc.test: New file.
Jan Nieuwenhuizen [Mon, 12 Dec 2016 19:35:07 +0000 (20:35 +0100)]
guix hash: 09axqivywpw0l9lm7pk1ncp6690vfv658z731z674ih73yqs5qma
Jan Nieuwenhuizen [Mon, 21 Nov 2016 13:18:01 +0000 (14:18 +0100)]
Release 0.2.
* configure (VERSION): Bump to 0.2.
* mes.c (main): Likewise.
* module/mes/repl.mes: Likewise.
Jan Nieuwenhuizen [Mon, 21 Nov 2016 13:16:52 +0000 (14:16 +0100)]
Update NEWS.
Jan Nieuwenhuizen [Thu, 10 Nov 2016 09:20:47 +0000 (10:20 +0100)]
test: Run psyntax before record.
* GNUmakefile (TESTS): Run psyntax before record.
Jan Nieuwenhuizen [Tue, 8 Nov 2016 20:05:01 +0000 (21:05 +0100)]
test: Add psyntax closure tests.
* tests/closure.test (closure 7, closure 8, closure 9): New test.
Jan Nieuwenhuizen [Sat, 5 Nov 2016 14:33:16 +0000 (15:33 +0100)]
core: Show more info on apply error.
* mes.c (apply_env): Be more specific about what cannot be applied.
Jan Nieuwenhuizen [Sat, 5 Nov 2016 12:46:22 +0000 (13:46 +0100)]
test: Add toplevel begin define test.
* tests/base.test (top begin define): New test.
Jan Nieuwenhuizen [Sat, 5 Nov 2016 10:08:10 +0000 (11:08 +0100)]
core: Bugfix: report name of undefined variable.
* mes.c (assert_defined): Add variable as parmeter, print it. Update
callers.
Jan Nieuwenhuizen [Thu, 3 Nov 2016 21:11:18 +0000 (22:11 +0100)]
core: Use switch in display_helper.
*mes (display_helper): Use switch.
Jan Nieuwenhuizen [Thu, 3 Nov 2016 20:43:01 +0000 (21:43 +0100)]
core: Refactor eval.
* mes.c (eval_env): Rename from builtin_eval, Update callers. Use switch.
Jan Nieuwenhuizen [Thu, 3 Nov 2016 20:28:05 +0000 (21:28 +0100)]
core: One SCM type for function.
* mes.c (function_t): New struct.
(type): One type for function.
(call): Refactor.
* build-aux/mes-snarf.mes: Use arity annotation. WAS: args. Update
annotations.
Jan Nieuwenhuizen [Thu, 3 Nov 2016 09:39:22 +0000 (10:39 +0100)]
core: Cleanup macro expansion.
* mes.c (builtin_eval): Call expand_macro_env after handling primitives.
(expand_macro_env): Include syntax-case expansion, remove skipping
of primitives.
(sc_expand_env): Remove.
Jan Nieuwenhuizen [Thu, 3 Nov 2016 09:37:08 +0000 (10:37 +0100)]
core: Factor-out assert_defined.
* mes.c (assert_defined): New function.
(set_env_x): Use it.
(builtin_eval): Use it.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 19:25:08 +0000 (20:25 +0100)]
Implement load.
* mes.c (symbol_primitive_load): New symbol.
(builtin_eval): Use it to implement primitive-load.
* module/mes/base-0.mes (push!, pop!): New macro.
(load): New macro.
* tests/data/load.scm: New file.
* tests/base.test (load): New test.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 19:22:02 +0000 (20:22 +0100)]
posix: Implement open-input-file.
* posix.c: New file.
* mes.c: Include posix.environment.h, posix.environment.i, posix.environment.c.
(read_input_file_env): Rename from read_file_env. Update
callers.
(load_env): Rename from load_file_env. Update callers.
* GNUmakefile (mes.o): Add posix.c, posix.environment.h,
posix.environment.i dependencies.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 17:25:18 +0000 (18:25 +0100)]
core: Support switching of input stream.
* mes.c (g_stdin): New global.
(getchar): New function, use g_stdin.
(ungetchar): Use g_stdin.
(main): Initialize g_stdin to stdin.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 14:35:32 +0000 (15:35 +0100)]
Update documentation wrt syntax-case.
* HACKING: Update wrt syntax-case.
* NEWS: Likewise.
* README: Likewise.
* guix.scm: Likewise.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 14:39:27 +0000 (15:39 +0100)]
Update AUTHORS.
* AUTHORS: Include information on lalr, match and psyntax.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 09:36:09 +0000 (10:36 +0100)]
Finalize psyntax integration.
* mes.c (sc_expand_env): Exclude primitives, expand native macros.
(symbol_expand_macro): New symbol.
* module/mes/psyntax-0.mes (properties-alist): New function.
* module/mes/psyntax-1.mes: Set expand-macro.
(define-syntax, syntax-rules, let-syntax): Remove macro.
* module/language/c/parser.mes: Use psyntax modules, remove syntax module.
* module/language/paren.mes: Likewise.
* scripts/repl.mes: Likewise.
* tests/match.test: Likewise.
* tests/record.test: Likewise.
* tests/psyntax.test (define-syntax swap!): Add test.
* module/mes/let-syntax.mes: Remove.
* module/mes/syntax.mes: Remove.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 09:26:04 +0000 (10:26 +0100)]
core: Quoted internals are symbols.
* mes.c (begin_env): Rename from begin. Update callers.
(scm_begin, scm_if, scm_define, scm_set_x): Rename from symbol_*.
(symbol_begin, symbol_define, symbol_if, scm_lambda, scm_set_x): New symbols.
(mes_environment): Add them to environment, SYMBOL->SCM.
* define.c (define_env): Rename from define. Update callers.
* build-aux/mes-snarf.scm: Shadow internals (SCM) by their symbol.
Jan Nieuwenhuizen [Wed, 2 Nov 2016 08:40:58 +0000 (09:40 +0100)]
test: More values, call-with-values tests.
* tests/cwv.test: New file.
* GNUmakefile (TESTS): Add it.
* tests/scm.test: Remove value and call-with-values tests.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 22:32:33 +0000 (23:32 +0100)]
psyntax: More tests.
* tests/psyntax.test: Add tests.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 22:30:22 +0000 (23:30 +0100)]
core: Fix quasisyntax reading.
* mes.c (readword): Avoid unspecified behaviour in comma list.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 22:28:57 +0000 (23:28 +0100)]
test: Add new macros.
* module/mes/test.mes (pass-if-equal, expect-fail): New macros.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 15:18:59 +0000 (16:18 +0100)]
repl: Add sc-expand meta command, include syntax-case.
* module/mes/repl.mes (,sc-expand): New meta command.
* scripts/repl.mes: Include psyntax-0, psyntax-1, psyntax. Not used as
basis for match yet.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 19:41:49 +0000 (20:41 +0100)]
Add syntax-case based syntax-rules.
* module/mes/psyntax-1.mes (syntax-rules): New syntax transformer,
based on syntax-case.
(define-syntax-rule): New macro.
(let-syntax): New macro, for syntax-case.
* tests/let-syntax.test: Switch to syntax-case.
* tests/psyntax.test: Add syntax-rules and syntax-rule test.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 19:32:38 +0000 (20:32 +0100)]
Bugfix include.mes: skip commented modules.
* scripts/include.mes: Make regexp more strict.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 15:16:20 +0000 (16:16 +0100)]
Initial psyntax integration.
* mes.c (sc_expand_env): New function.
(builtin_eval): Use it.
* module/mes/psyntax-0.mes: New file.
* module/mes/psyntax-1.mes: New file.
* tests/psyntax.test: New file.
* GNUmakefile (TESTS): Add it.
Jan Nieuwenhuizen [Sun, 30 Oct 2016 14:46:54 +0000 (15:46 +0100)]
psyntax: Add missing (interaction-environment) to eval.
* module/mes/psyntax.mes: Add (interaction-environment) to eval.
Jan Nieuwenhuizen [Sat, 29 Oct 2016 17:05:06 +0000 (19:05 +0200)]
Import psyntax from Guile-1.3a.
* module/mes/psyntax.mes: New file.
* module/mes/psyntax.ss: New file.
commit
230c435383087a1e6ad60d9c98d3ec75dd2c3e49
Author: Mikael Djurfeldt <djurfeldt@nada.kth.se>
Date: Tue Aug 19 01:28:50 1997 +0000
* syncase.scm: New file: Guile-adaption for syntax-case macros.
psyntax.pp, psyntax.ss: Syntax-case macros, portable version 2 by
R. Kent Dybvig, Oscar Waddell, Bob Hieb and Carl Bruggeman
Jan Nieuwenhuizen [Sun, 30 Oct 2016 19:33:59 +0000 (20:33 +0100)]
Exit upon error.
* module/mes/scm.mes (error): Add exit 1.