diff --git a/AUTHORS b/AUTHORS index ec2043d6..8fa55095 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Jan Nieuwenhuizen +Jan (janneke) Nieuwenhuizen Main author All files except the files listed below diff --git a/HACKING b/HACKING index 904c9245..2af5d6d7 100644 --- a/HACKING +++ b/HACKING @@ -41,14 +41,18 @@ Running ./make.scm produces a `script' file. * ROADMAP ** TODO -*** release 0.12 - - mescc: compile a mes-tcc that can compile gcc-4.7. *** release 0.x, unsorted + - mes+mescc: compile a mes-tcc that can compile gcc-4.7. + - mes: prepare src/mes.c for M2-Planet transpiler. + - mes: use more efficient scheme continuation stack (wip-array?) + - mes: drop SCM stack in C / implement call/cc a la guile-1.8 setjmp? - mescc: refactor type(/ptr?) system; expr->type and ast-type->type. - mescc: refactor initializers. - - mescc: record and support function types, and thus foo ()->bar. + - mescc: record and support function types, and thus foo ()->bar, *foo (). - mescc: refactor switch statement to support unpatched tinycc. - - mes/mescc: bootstrap a minimal-Guile (libguile/eval.c,ice-9/eval.scm). + - mes/mescc: bootstrap a minimal-Guile + + libguile/{eval,init,list,strings,values,..}.c + + ice-9/eval.scm - mescc: have mes-tcc pass all scaffold/tests, scaffold/tinycc tests. - mescc: compile a mes-tcc that can compile gcc-4.7. - mescc: refactor switch; support heterogeneous switch case. @@ -62,23 +66,18 @@ Running ./make.scm produces a `script' file. - mescc: some success with 8cc,pcc,guile/libguile/eval.c. - build: guile/guix/make.scm: add file-types, intermediate, hash all dependencies - build: make.scm: imperative->declaritive - - hex2: produce ELF_sym and ELF_str tables from hex2; nicer for objdump -d, gdb (in mescc-tools?) - - compile src/mes.c with M2-Planet. - - rewrite src/mes.c in stage0's stage2 LISP. - - and/or: rewrite src/mes.c M1 - - and/or: connect to GNU Epsilon's VM - - and/or: compile Scheme to C, rewrite Mes.c into Mes.scm. - - real module support, bonus for supporting Guile's define-module/define-public syntax. + - mes: real module support, bonus for supporting Guile's define-module/define-public syntax. - get full source syntax-case up (Andre van Tonder?) OR drop it. + https://srfi.schemers.org/srfi-72/srfi-72.html psyntax/syntax-case and rewrite Nyacc without syntax-case+R7RS Ellipsis. - - support regexp OR rewrite Nyacc without regexps. - - split-off MesCC as as standalone Guile C compiler project. + - mescc: split-off MesCC as as standalone Guile C compiler project. *** release 1.0 - replace GuixSD's bootstrap binaries for x86. - add x86_64, replace GuixSD's bootstrap binaries for x86_64. - more architectures? ** DONE -*** 0.11: MesCC now compiles a mes-tcc that passes 41/69 of mescc's C tests. +*** 0.12: Mes+MesCC now compiles mes.c (~3000LOC) in ~4min. +*** 0.11: MesCC now compiles a mes-tcc that passes 26/69 of mescc's C tests. *** 0.10: Mescc now compiles a mes-tcc that compiles a trivial C to a running a.out. *** 0.9: Mescc now writes M1 macro assembly files and compiles tcc. *** 0.8: Mescc now writes object files in stage0's labeled hex2 format. @@ -93,48 +92,13 @@ eenough to work on compiling tinycc's tcc.c albeit a somewhat modified version. *** 0.1: Mes eval/apply feature complete; support syntax-rules, compile main.c using LALR, dump ELF * Bugs -** eval_apply/gc + Nyacc bug -scripts/messc.mes intermittently exposes a bug in eval_apply/gc when -Nyacc parses mes.c-sized source. Running - - MES_MAX_ARENA= scripts/mescc.mes - -may [un]cover the bug. So there is probably some eval_apply-construct -that Nyacc uses, possiblby indirectly via with-fluid, like (call/cc, -call-with-current-continuation), that breaks when GC triggers at the -wrong time. -** mescc can only compile itself, it cannot full-functionally compile tcc, gcc or guile +** mes: remove pmatch-car/pmatch-cdr hack. +** mes+mescc: parse tcc.c->tcc.E works, compile tcc.E -> tcc.M1 segfaults. + time GUILE_LOAD_PATH=/home/janneke/src/nyacc/module:$GUILE_LOAD_PATH ../mes/scripts/mescc.mes -E -o tcc.E -I . -I ../mes/lib -I ../mes/include -D 'CONFIG_TCCDIR="usr/lib/tcc"' -D 'CONFIG_TCC_CRTPREFIX="usr/lib:{B}/lib:."' -D 'CONFIG_TCC_ELFINTERP="/gnu/store/70jxsnpffkl7fdb7qv398n8yi1a3w5nx-glibc-2.26.105-g0890d5379c/lib/ld-linux.so.2"' -D 'CONFIG_TCC_LIBPATHS="/home/janneke/src/tinycc/usr/lib:{B}/lib:."' -D 'CONFIG_TCC_SYSINCLUDEPATHS="../mes/include:usr/include:{B}/include"' -D CONFIG_USE_LIBGCC=1 -D 'TCC_LIBGCC="/home/janneke/src/tinycc/usr/lib/libc+tcc-gcc.mlibc-o"' -D CONFIG_TCC_STATIC=1 -D ONE_SOURCE=yes -D TCC_TARGET_I386=1 -D BOOTSTRAP=1 tcc.c + time GUILE_LOAD_PATH=/home/janneke/src/nyacc/module:$GUILE_LOAD_PATH MES_ARENA=200000000 ../mes/scripts/mescc.mes -c -o tcc.M1 tcc.E +** mes: with-fluids: tests/fluids.test test 7 fails with Mes. ** mescc: 7n-struct-struct-array.c: struct file f = {"first.h"}; -** mes.mes cannot read sexps, only --dump's, mes.mes cannot --dump -** Bootstrap binary mes is too big and opaque to be considered source -68kB ELF binary which can be disassembled (objdump -d mes.mes). -** Psyntax is too big and opaque to be considered source -And needs a patched Guile-1.8 to [re]generate. ** test/match.test ("nyacc-simple"): hygiene problem in match -** Performance -*** mes is slow -*** The Scheme reader is very slow. -*** mescc is slow -**** compiling mes.c takes mescc.mes 2h30' -mescc.scm which runs on Guile takes 30" -** Fluids are a hack for Nyacc. -*** Translate C-prototype mes.c into annotated hex? -One idea is to use OriansJ's amazing self-hosting [[https://github.com/oriansj/stage0][stage0]] hex assembler -and minimal bootstrap binaries and rewrite the mes.c core to directly -bootstrap into Scheme. - -*** Rewrite mes.c in Schemy/Sexp-C and generate annotated hex? -Another idea (thanks Rutger!) is to rewrite the mes.c core in a s-exp -C/Assembly variant and thave mescc produce the simple, annotated -bootstrap binary. - -*** Compile the [[https://en.wikipedia.org/wiki/Tiny_C_Compiler][Tiny C Compiler]] - -** Build tools do not run on mes -*** configure needs Bash, Guile -*** GNUmakefile needs Bash, Guile -*** build-aux/mes-snarf.scm needs Guile -*** build-aux/git-changelog needs Perl * OLD: Booting from LISP-1.5 into Mes Mes started out experimenting with booting from a hex-coded minimal @@ -164,7 +128,7 @@ while Guile is used for bootstrapping. info registers p/x $eax p/x $edx -set disassemble-next-line +set disassemble-next-line on gdb-display-disassembly-buffer b *0x804a79d ** Create memory dump with 32 bit Gcc compiled Mes diff --git a/INSTALL b/INSTALL index 408caec0..081cdaf8 100644 --- a/INSTALL +++ b/INSTALL @@ -8,8 +8,8 @@ Building and Installing Mes * Prerequisites ** Bootstrapping For bootstrapping, the M1 macro assembler and hex2 linker and Nyacc -*** [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.2 is known to work. -*** [[https://savannah.gnu.org/projects/nyacc][Nyacc]], 0.82.4 is known to work. +*** [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.4 is known to work. +*** [[https://savannah.gnu.org/projects/nyacc][Nyacc]], [[https://gitlab.com/janneke/nyacc][patched Nyacc]] 0.80.42 is known to work. For development ** Development For development, there are some more dependencies. @@ -19,8 +19,8 @@ For development, there are some more dependencies. guix environment --system=i686-linux -l guix.scm #32 bit only *** Other GNU/Linux -**** [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.2 is known to work. -**** [[https://savannah.gnu.org/projects/nyacc][Nyacc]], 0.82.4 is known to work. +**** [[https://github.com/oriansj/mescc-tools][mescc-tools]], 0.4 is known to work. +**** [[https://savannah.gnu.org/projects/nyacc][Nyacc]], [[https://gitlab.com/janneke/nyacc][patched Nyacc]] 0.80.42 is known to work. **** GNU Gcc, 4.9.3 is known to work. The idea is to drop this requirement, of course. diff --git a/NEWS b/NEWS index ebb1203c..844c0015 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ #+TITLE: Mes NEWS – history of user-visible changes #+STARTUP: content hidestars -Copyright © 2016,2017 Jan Nieuwenhuizen +Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright @@ -10,9 +10,40 @@ Copyright © 2016,2017 Jan Nieuwenhuizen Please send Mes bug reports to janneke@gnu.org. +* Changes in 0.12 since 0.11 +** Core +*** Mes can now run Nyacc (0.80.42) to compile itself in ~4min (~3000 LOC). +*** Mes now recursively expands global variables per top level statement. +*** Mes now recursively expands macros per top level statement. +*** Mes now boots from MES_BOOT (default: module/mes/boot-0.scm). +*** Mes now has a full Scheme reader in C again. +This gives a 10x-20x performance improvement and increases the +bootstrap footprint by 160 LOC. +*** Mes reader now supports older abbreviated character forms +#\bel, #\bs, #\ht and #\vt. +*** 3 new functions +equal2?, memq, core:write. +** Language +*** Mes now has an incremental Scheme semantics test suite with 71 small tests. +*** Variable names can now have ticks. +*** Mes now evaluates expresions of COND only once. +*** srfi-9 records have been reimplemented. +*** #\page is now whitespace. +*** # is no longer a character. +*** 2 new macros +define-macro*, with-fluids. +*** 9 new functions +dirname, last, reverse-list->string, setenv, string-drop-right, +string-fold, string-fold-right, string-null?, write. +** MesCC +**** 9 new functions +chmod, getopt_long, ferror, itoab, longjmp, qsort, setenv, setjmp, strtol. +**** 2 new header files +endian.h, sys/signal.h. + * Changes in 0.11 since 0.10 ** MesCC -*** MesCC now compiles a mes-tcc that passes 41/69 of mescc's C tests. +*** MesCC now compiles a mes-tcc that fails 41/69 of mescc's C tests. *** Messc's libc can now be compiled with tcc (syscall support: write). *** Messc now compiles a less-patched tcc: -214/+458 lines [WAS: -333/+747]. *** MesCC now supports empty for. diff --git a/README b/README index f80612d8..3ad71d04 100644 --- a/README +++ b/README @@ -6,8 +6,8 @@ Mes -- Maxwell Equations of Software It currently consists of a mutual self-hosting [close to Guile-] Scheme interpreter prototype in C and a Nyacc-based C compiler in -[Guile] Scheme. This C prototype will be rewritten in [[https://github.com/oriansj/stage0][stage0]] M1 -assembly (or possibly stage2 slow-LISP, or ...). +[Guile] Scheme. This C prototype will be simplified to be transpiled +by [[https://github.com/oriansj/m2-planet][M2-Planet]]. The Scheme interpreter prototype (mes.c) has a Garbage Collector, a library of loadable Scheme modules-- notably Dominique Boucher's [[https://github.com/schemeway/lalr-scm][LALR]], @@ -25,7 +25,7 @@ Jeremiah Orians's stage0 ~300 byte self-hosting hex assembler. [0] https://gitlab.com/janneke/mes [1] https://www.gnu.org/software/guix [2] http://bootstrappable.org -[3] https://github.com/oriansj/stage0 +[3] https://github.com/oriansj/m2-planet [4] https://github.com/schemeway/lalr-scm [5] https://www.cs.indiana.edu/chezscheme/syntax-case/old-psyntax.html [6] https://www.nongnu.org/nyacc @@ -33,6 +33,7 @@ Jeremiah Orians's stage0 ~300 byte self-hosting hex assembler. [8] https://gitlab.com/janneke/tinycc [9] https://lists.gnu.org/archive/html/tinycc-devel/2017-05/msg00103.html [10] http://www.softwarepreservation.org/projects/LISP/book/LISP%25201.5%2520Programmers%2520Manual.pdf +[11] https://github.com/oriansj/stage0 Mes is free software, it is distributed under the terms of the GNU General Public Licence version 3 or later. See the file COPYING. diff --git a/build-aux/manifest.scm b/build-aux/manifest.scm index 6e6e9304..d2087578 100644 --- a/build-aux/manifest.scm +++ b/build-aux/manifest.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; This file is part of Mes. ;;; diff --git a/build-aux/mes-snarf.scm b/build-aux/mes-snarf.scm index 024de299..28c779f9 100755 --- a/build-aux/mes-snarf.scm +++ b/build-aux/mes-snarf.scm @@ -4,7 +4,7 @@ exec ${GUILE-guile} --no-auto-compile -L $HOME/src/mes/build-aux -L build-aux -e !# ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; mes-snarf.scm: This file is part of Mes. ;;; diff --git a/build.sh b/build.sh index f659c411..e7ff09e4 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #! /bin/sh # Mes --- Maxwell Equations of Software -# Copyright © 2017,2018 Jan Nieuwenhuizen +# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/check-boot.sh b/check-boot.sh index 0792053d..801a4e92 100755 --- a/check-boot.sh +++ b/check-boot.sh @@ -1,7 +1,7 @@ #! /bin/bash # Mes --- Maxwell Equations of Software -# Copyright © 2018 Jan Nieuwenhuizen +# Copyright © 2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/check-mescc.sh b/check-mescc.sh index a5e53ba3..42b783a0 100755 --- a/check-mescc.sh +++ b/check-mescc.sh @@ -1,7 +1,7 @@ #! /bin/sh # Mes --- Maxwell Equations of Software -# Copyright © 2017,2018 Jan Nieuwenhuizen +# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/check.sh b/check.sh index ce81f7f2..8e5c9e95 100755 --- a/check.sh +++ b/check.sh @@ -1,7 +1,7 @@ #! /bin/sh # Mes --- Maxwell Equations of Software -# Copyright © 2017,2018 Jan Nieuwenhuizen +# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/configure b/configure index 382f8ffd..956904b4 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ exec ${GUILE} --no-auto-compile -L $(pwd) -C $(pwd) -e 'main' -s "$0" ${1+"$@"} !# ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; configure: This file is part of Mes. ;;; diff --git a/doc/ANNOUNCE-0.12 b/doc/ANNOUNCE-0.12 new file mode 100644 index 00000000..32b45dcd --- /dev/null +++ b/doc/ANNOUNCE-0.12 @@ -0,0 +1,97 @@ +Subject: Mes 0.12 released + +I am pleased to announce the release of Mes 0.12, representing 120 +commits over 20 weeks. MesCC is prototyped running on Guile and can +now run on Mes. Performance of Mes running MesCC has been improved by +a factor of 100; mes.c (~3000 LOC) now compiles in ~4min. Many fixes +and enhancements make that now also TinyCC parses (~1.5h) and compiles +(~20min) with Mes+MesCC (Guile+MesCC takes ~2min). + +Special thanks go to Ricardo Wurmus for sharing the recursive macro +expand perspective and starting work on that, to Han-Wen Nienhuys for +his sharp `Ah, so you skipped SICP chapter 3' remark and to rain1 for +their continuous help on #bootstrapping and their `let's only expand +global variables' insight. + +* About + + Mes[0] aims to create full source bootstrapping for GuixSD[1] as + part of the bootstrappable builds[2] project. + + It currently consists of a mutual self-hosting [close to Guile-] + Scheme interpreter prototype in C and a Nyacc-based C compiler in + [Guile] Scheme. This C prototype will be simplified to be + transpiled by M2-Planet[3]. + + The Scheme interpreter prototype (mes.c) has a Garbage Collector, + a library of loadable Scheme modules-- notably Dominique Boucher's + LALR[4], pre-R6RS portable syntax-case[5] with R7RS ellipsis, Matt + Wette's Nyacc[6], Guile's PEG[7] --and test suite just barely + enough to support a simple REPL (repl.mes) and simple C-compiler + MesCC (mescc.mes). + + MesCC can compile a modified TinyCC[8] that is close to being + self-hosting. A GNU Ccc-compiled tcc is known[9] to compile GCC. + + Mes is inspired by The Maxwell Equations of Software: LISP-1.5[10] + -- John McCarthy page 13, GNU Guix's source/binary packaging + transparency and Jeremiah Orians's stage0[11] ~300 byte self-hosting + hex assembler. + +* Download + + git clone https://gitlab.com/janneke/mes + + wget https://gitlab.com/janneke/mes/repository/archive.tar.gz?ref=v0.12 -O mes-0.12.tar.gz + +Mes runs from the source tree and can also be built, packaged and +installed in Guix[SD] by the usual + + guix package -f guix.scm + +* Changes in 0.12 since 0.11 + ** Core + *** Mes can now run Nyacc (0.80.42) to compile itself in ~4min (~3000 LOC). + *** Mes now recursively expands global variables per top level statement. + *** Mes now recursively expands macros per top level statement. + *** Mes now boots from MES_BOOT (default: module/mes/boot-0.scm). + *** Mes now has a full Scheme reader in C again. + This gives a 10x-20x performance improvement and increases the + bootstrap footprint by 160 LOC. + *** Mes reader now supports older abbreviated character forms + #\bel, #\bs, #\ht and #\vt. + *** 3 new functions + equal2?, memq, core:write. + ** Language + *** Mes now has an incremental Scheme semantics test suite with 71 small tests. + *** Variable names can now have ticks. + *** Mes now evaluates expresions of COND only once. + *** srfi-9 records have been reimplemented. + *** #\page is now whitespace. + *** # is no longer a character. + *** 2 new macros + define-macro*, with-fluids. + *** 9 new functions + dirname, last, reverse-list->string, setenv, string-drop-right, + string-fold, string-fold-right, string-null?, write. + ** MesCC + **** 9 new functions + chmod, getopt_long, ferror, itoab, longjmp, qsort, setenv, setjmp, strtol. + **** 2 new header files + endian.h, sys/signal.h. + +Greetings, +janneke + +[0] https://gitlab.com/janneke/mes +[1] https://www.gnu.org/software/guix +[2] http://bootstrappable.org +[3] https://github.com/oriansj/m2-planet +[4] https://github.com/schemeway/lalr-scm +[5] https://www.cs.indiana.edu/chezscheme/syntax-case/old-psyntax.html +[6] https://www.nongnu.org/nyacc/ +[7] https://www.gnu.org/software/guile/docs/master/guile.html/PEG-Parsing.html +[8] https://gitlab.com/janneke/tinycc +[9] https://lists.gnu.org/archive/html/tinycc-devel/2017-05/msg00103.html +[10] http://www.softwarepreservation.org/projects/LISP/book/LISP%25201.5%2520Programmers%2520Manual.pdf +[11] https://github.com/oriansj/stage0 diff --git a/doc/fosdem/fosdem.org b/doc/fosdem/fosdem.org index 1f89f2ba..41ce13f7 100644 --- a/doc/fosdem/fosdem.org +++ b/doc/fosdem/fosdem.org @@ -642,7 +642,7 @@ R5RS to x86 Assembly # :COPYING: t # :END: -# Copyright \copy 2017 Jan Nieuwenhuizen +# Copyright \copy 2017 Jan (janneke) Nieuwenhuizen # C-c C-e l b (org-beamer-export-to-latex) # C-c C-e l P (org-beamer-export-to-pdf) diff --git a/guile/guix/make.scm b/guile/guix/make.scm index 15134ca1..724da3b6 100644 --- a/guile/guix/make.scm +++ b/guile/guix/make.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/guile/mes-0.scm b/guile/mes-0.scm index c0f4e9db..5d71ff13 100644 --- a/guile/mes-0.scm +++ b/guile/mes-0.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; mes-0.scm: This file is part of Mes. ;;; diff --git a/guile/mes.mes b/guile/mes.mes index 4ec945c5..87ac3082 100644 --- a/guile/mes.mes +++ b/guile/mes.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; mes.mes: This file is part of Mes. ;;; diff --git a/guile/mes.scm b/guile/mes.scm index 1e4ca3f6..b9032657 100755 --- a/guile/mes.scm +++ b/guile/mes.scm @@ -4,7 +4,7 @@ exec guile -L $(pwd) -e '(mes)' -s "$0" "$@" !# ;;; Mes --- The Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; diff --git a/guile/mescc.scm b/guile/mescc.scm index 3e9125b2..e96cb800 100755 --- a/guile/mescc.scm +++ b/guile/mescc.scm @@ -10,7 +10,7 @@ exec ${GUILE-guile} -L $GUILEDIR -e '(mescc)' -s "$0" "$@" !# ;;; Mes --- The Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; diff --git a/guile/reader.mes b/guile/reader.mes index d1fc56fe..c00582b8 100644 --- a/guile/reader.mes +++ b/guile/reader.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/guix.scm b/guix.scm index a3e54a57..1963ecba 100644 --- a/guix.scm +++ b/guix.scm @@ -1,7 +1,7 @@ ;;; guix.scm -- Guix package definition ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; Also borrowing code from: ;;; guile-sdl2 --- FFI bindings for SDL2 diff --git a/include/00-test.i b/include/00-test.i index 22082756..79742278 100644 --- a/include/00-test.i +++ b/include/00-test.i @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/30-test.i b/include/30-test.i index 46ede623..2f638f19 100644 --- a/include/30-test.i +++ b/include/30-test.i @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/alloca.h b/include/alloca.h index 61df8930..07f88f3f 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/assert.h b/include/assert.h index 18ce042c..eb1f3bac 100644 --- a/include/assert.h +++ b/include/assert.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/ctype.h b/include/ctype.h index 69d1210c..dee281da 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/dlfcn.h b/include/dlfcn.h index 0158a8e4..54e85534 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/endian.h b/include/endian.h index 87d10117..45e57c60 100644 --- a/include/endian.h +++ b/include/endian.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/errno.h b/include/errno.h index c4ccbb31..055267a6 100644 --- a/include/errno.h +++ b/include/errno.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/fcntl.h b/include/fcntl.h index 7d30a7bb..920b7e5a 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/features.h b/include/features.h index a75a698f..e887ee8f 100644 --- a/include/features.h +++ b/include/features.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/float.h b/include/float.h index 4b5fd38f..cc8e4d33 100644 --- a/include/float.h +++ b/include/float.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/getopt.h b/include/getopt.h index 85e4b50c..c7362caa 100644 --- a/include/getopt.h +++ b/include/getopt.h @@ -1,7 +1,7 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software * Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc. - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/inttypes.h b/include/inttypes.h index b3f4f7e0..c963f34f 100644 --- a/include/inttypes.h +++ b/include/inttypes.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/libgen.h b/include/libgen.h index 2bad446b..76eb8cd9 100644 --- a/include/libgen.h +++ b/include/libgen.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/limits.h b/include/limits.h index 765dd4a8..2bd2ee35 100644 --- a/include/limits.h +++ b/include/limits.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/locale.h b/include/locale.h index bbd07973..91d6ac65 100644 --- a/include/locale.h +++ b/include/locale.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/math.h b/include/math.h index c74b8864..ca9ae3a5 100644 --- a/include/math.h +++ b/include/math.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/mlibc.h b/include/mlibc.h index fb24f0bb..2e4cfdaf 100644 --- a/include/mlibc.h +++ b/include/mlibc.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/setjmp.h b/include/setjmp.h index 09ec2c63..fdfee319 100644 --- a/include/setjmp.h +++ b/include/setjmp.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/signal.h b/include/signal.h index 43f958ce..574b7224 100644 --- a/include/signal.h +++ b/include/signal.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdarg.h b/include/stdarg.h index d93befa7..5d7b7eea 100644 --- a/include/stdarg.h +++ b/include/stdarg.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdbool.h b/include/stdbool.h index c900fc5b..72136ece 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stddef.h b/include/stddef.h index f4a56bed..7d619a70 100644 --- a/include/stddef.h +++ b/include/stddef.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdint.h b/include/stdint.h index 63cf9ce1..91ae6b67 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdio.h b/include/stdio.h index 4372f970..9e880e21 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdlib.h b/include/stdlib.h index 3bf99a53..75eded7d 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/stdnoreturn.h b/include/stdnoreturn.h index e1e94fdb..434882f2 100644 --- a/include/stdnoreturn.h +++ b/include/stdnoreturn.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/string.h b/include/string.h index aa8239df..32502021 100644 --- a/include/string.h +++ b/include/string.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/strings.h b/include/strings.h index 49b8f744..e65c6a14 100644 --- a/include/strings.h +++ b/include/strings.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/cdefs.h b/include/sys/cdefs.h index b156e084..9f681488 100644 --- a/include/sys/cdefs.h +++ b/include/sys/cdefs.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/mman.h b/include/sys/mman.h index 6dfc20fa..06e99779 100644 --- a/include/sys/mman.h +++ b/include/sys/mman.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/select.h b/include/sys/select.h index a30b89a5..e6899821 100644 --- a/include/sys/select.h +++ b/include/sys/select.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/stat.h b/include/sys/stat.h index 52ff8d06..0cb770bb 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/time.h b/include/sys/time.h index 4e5b218f..eed34b52 100644 --- a/include/sys/time.h +++ b/include/sys/time.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/timeb.h b/include/sys/timeb.h index a2bacd3c..d89f4f96 100644 --- a/include/sys/timeb.h +++ b/include/sys/timeb.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/types.h b/include/sys/types.h index 18590c1a..e59df775 100644 --- a/include/sys/types.h +++ b/include/sys/types.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/ucontext.h b/include/sys/ucontext.h index 4f68f36e..0d159402 100644 --- a/include/sys/ucontext.h +++ b/include/sys/ucontext.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/sys/wait.h b/include/sys/wait.h index 6d5eb524..f90c419d 100644 --- a/include/sys/wait.h +++ b/include/sys/wait.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/time.h b/include/time.h index 6c2fc12a..6e87257b 100644 --- a/include/time.h +++ b/include/time.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/include/unistd.h b/include/unistd.h index 42852be8..5c6426e3 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/crt1.c b/lib/crt1.c index 24cdebb7..77e6fbbe 100644 --- a/lib/crt1.c +++ b/lib/crt1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/getopt.c b/lib/getopt.c index 91555ab1..0256a574 100644 --- a/lib/getopt.c +++ b/lib/getopt.c @@ -1,6 +1,6 @@ /* Getopt for GNU. Copyright (C) 1987, 88, 89, 90, 91, 1992 Free Software Foundation, Inc. - Copyright (C) 2017 Jan Nieuwenhuizen + Copyright (C) 2017 Jan (janneke) Nieuwenhuizen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/libc+tcc-gcc.c b/lib/libc+tcc-gcc.c index 66980e1d..703e6495 100644 --- a/lib/libc+tcc-gcc.c +++ b/lib/libc+tcc-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/libc+tcc-mes.c b/lib/libc+tcc-mes.c index 2852d7fb..5537c288 100644 --- a/lib/libc+tcc-mes.c +++ b/lib/libc+tcc-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/libc+tcc.c b/lib/libc+tcc.c index 4773fafd..1ce62078 100644 --- a/lib/libc+tcc.c +++ b/lib/libc+tcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/libc-gcc.c b/lib/libc-gcc.c index 53c3dfc5..b69489f0 100644 --- a/lib/libc-gcc.c +++ b/lib/libc-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/libc-mes.c b/lib/libc-mes.c index aaedbdac..92136b0c 100644 --- a/lib/libc-mes.c +++ b/lib/libc-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/libc.c b/lib/libc.c index 836800ca..0e889feb 100644 --- a/lib/libc.c +++ b/lib/libc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/linux+tcc-gcc.c b/lib/linux+tcc-gcc.c index bb49c231..9c5a8d45 100644 --- a/lib/linux+tcc-gcc.c +++ b/lib/linux+tcc-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/linux+tcc-mes.c b/lib/linux+tcc-mes.c index 65f9d2ef..3dbb8365 100644 --- a/lib/linux+tcc-mes.c +++ b/lib/linux+tcc-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/linux-gcc.c b/lib/linux-gcc.c index 964ca522..ca942440 100644 --- a/lib/linux-gcc.c +++ b/lib/linux-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/linux-mes.c b/lib/linux-mes.c index bb4327f2..06f55a8e 100644 --- a/lib/linux-mes.c +++ b/lib/linux-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/mini-libc-gcc.c b/lib/mini-libc-gcc.c index 9afeaabd..2702168b 100644 --- a/lib/mini-libc-gcc.c +++ b/lib/mini-libc-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/mini-libc-mes.c b/lib/mini-libc-mes.c index 8015e302..11083def 100644 --- a/lib/mini-libc-mes.c +++ b/lib/mini-libc-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/mini-libc.c b/lib/mini-libc.c index ac8c852e..ff0377ec 100644 --- a/lib/mini-libc.c +++ b/lib/mini-libc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/mini-linux-gcc.c b/lib/mini-linux-gcc.c index d6d0f564..e6914b3a 100644 --- a/lib/mini-linux-gcc.c +++ b/lib/mini-linux-gcc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/lib/mini-linux-mes.c b/lib/mini-linux-mes.c index 00bb7a94..95ba9716 100644 --- a/lib/mini-linux-mes.c +++ b/lib/mini-linux-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/make.scm b/make.scm index 9c523e90..3580d43b 100755 --- a/make.scm +++ b/make.scm @@ -4,7 +4,7 @@ exec ${GUILE-guile} --no-auto-compile -L . -L guile -C . -C guile -s "$0" ${1+"$ !# ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/language/c99/compiler.mes b/module/language/c99/compiler.mes index af0f8807..a1acea49 100644 --- a/module/language/c99/compiler.mes +++ b/module/language/c99/compiler.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/language/c99/compiler.scm b/module/language/c99/compiler.scm index 552ba1fe..0541c294 100644 --- a/module/language/c99/compiler.scm +++ b/module/language/c99/compiler.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/language/c99/info.mes b/module/language/c99/info.mes index bb8e996a..7749e7dd 100644 --- a/module/language/c99/info.mes +++ b/module/language/c99/info.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/language/c99/info.scm b/module/language/c99/info.scm index 41f546e8..bd23d7ae 100644 --- a/module/language/c99/info.scm +++ b/module/language/c99/info.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/language/paren.mes b/module/language/paren.mes index 7614c504..f3039ea5 100644 --- a/module/language/paren.mes +++ b/module/language/paren.mes @@ -2,7 +2,7 @@ ;;; Mes --- Maxwell Equations of Software ;;; Copyright © 2008 Derek Peschel -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/M1.mes b/module/mes/M1.mes index aa37be56..20eabb04 100644 --- a/module/mes/M1.mes +++ b/module/mes/M1.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/M1.scm b/module/mes/M1.scm index 43813e6b..ab522cae 100644 --- a/module/mes/M1.scm +++ b/module/mes/M1.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/as-i386.mes b/module/mes/as-i386.mes index c4eca7c0..0521114f 100644 --- a/module/mes/as-i386.mes +++ b/module/mes/as-i386.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/as-i386.scm b/module/mes/as-i386.scm index c999be47..782b983d 100644 --- a/module/mes/as-i386.scm +++ b/module/mes/as-i386.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/as.mes b/module/mes/as.mes index e90316ff..ee551882 100644 --- a/module/mes/as.mes +++ b/module/mes/as.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/as.scm b/module/mes/as.scm index 3c7ff1d3..e815b84f 100644 --- a/module/mes/as.scm +++ b/module/mes/as.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/base-0.mes b/module/mes/base-0.mes index 44bd42f3..02e2d521 100644 --- a/module/mes/base-0.mes +++ b/module/mes/base-0.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/base.mes b/module/mes/base.mes index 789351b1..704ea566 100644 --- a/module/mes/base.mes +++ b/module/mes/base.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/boot-0.scm b/module/mes/boot-0.scm index eddd0612..95c1d0f6 100644 --- a/module/mes/boot-0.scm +++ b/module/mes/boot-0.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/boot-00.scm b/module/mes/boot-00.scm index 4c0b3378..324852be 100644 --- a/module/mes/boot-00.scm +++ b/module/mes/boot-00.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/boot-01.scm b/module/mes/boot-01.scm index 1026f19a..33ed4bbe 100644 --- a/module/mes/boot-01.scm +++ b/module/mes/boot-01.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/bytevectors.mes b/module/mes/bytevectors.mes index 2deb0107..3260685a 100644 --- a/module/mes/bytevectors.mes +++ b/module/mes/bytevectors.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/bytevectors.scm b/module/mes/bytevectors.scm index 7846c52b..15607a81 100644 --- a/module/mes/bytevectors.scm +++ b/module/mes/bytevectors.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/catch.mes b/module/mes/catch.mes index 5be7ef83..9ea0decb 100644 --- a/module/mes/catch.mes +++ b/module/mes/catch.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/display.mes b/module/mes/display.mes index e3b19ba8..6be26bfb 100644 --- a/module/mes/display.mes +++ b/module/mes/display.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/elf.mes b/module/mes/elf.mes index 747aa807..481abf85 100644 --- a/module/mes/elf.mes +++ b/module/mes/elf.mes @@ -1,7 +1,7 @@ <;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/elf.scm b/module/mes/elf.scm index 1f8c689c..22da8fbb 100644 --- a/module/mes/elf.scm +++ b/module/mes/elf.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/fluids.mes b/module/mes/fluids.mes index 87dc4307..9761b8f2 100644 --- a/module/mes/fluids.mes +++ b/module/mes/fluids.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/getopt-long.mes b/module/mes/getopt-long.mes index 8c5069b9..5fc23333 100644 --- a/module/mes/getopt-long.mes +++ b/module/mes/getopt-long.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/getopt-long.scm b/module/mes/getopt-long.scm index 2c873eb7..53bd349c 100644 --- a/module/mes/getopt-long.scm +++ b/module/mes/getopt-long.scm @@ -1,5 +1,5 @@ ;;; Copyright (C) 1998, 2001, 2006 Free Software Foundation, Inc. -;;; Copyright (C) 2017,2018 Jan Nieuwenhuizen +;;; Copyright (C) 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public @@ -16,8 +16,8 @@ ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;;; Author: Russ McManus (rewritten by Thien-Thi Nguyen) -;;; (regexps removed by Jan Nieuwenhuizen) -;;; (srfi-9 backport by Jan Nieuwenhuizen) +;;; (regexps removed by Jan (janneke) Nieuwenhuizen) +;;; (srfi-9 backport by Jan (janneke) Nieuwenhuizen) ;;; Commentary: diff --git a/module/mes/guile.mes b/module/mes/guile.mes index fa2c46af..321e2cc5 100644 --- a/module/mes/guile.mes +++ b/module/mes/guile.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/guile.scm b/module/mes/guile.scm index 1af8f6b4..3e71de67 100644 --- a/module/mes/guile.scm +++ b/module/mes/guile.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/lalr.mes b/module/mes/lalr.mes index c34520b4..dadc40ee 100644 --- a/module/mes/lalr.mes +++ b/module/mes/lalr.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/lalr.scm b/module/mes/lalr.scm index 4f50d27e..87b63c56 100644 --- a/module/mes/lalr.scm +++ b/module/mes/lalr.scm @@ -1,7 +1,7 @@ ;;; ;;;; An Efficient and Portable LALR(1) Parser Generator for Scheme ;;; -;; Copyright 2014 Jan Nieuwenhuizen +;; Copyright 2014 Jan (janneke) Nieuwenhuizen ;; Copyright 1993, 2010 Dominique Boucher ;; ;; This program is free software: you can redistribute it and/or diff --git a/module/mes/let.mes b/module/mes/let.mes index 7b984ba9..6cc51025 100644 --- a/module/mes/let.mes +++ b/module/mes/let.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/match.mes b/module/mes/match.mes index 04c56b95..537ba0be 100644 --- a/module/mes/match.mes +++ b/module/mes/match.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/module.mes b/module/mes/module.mes index d6aa7677..be55eaa8 100644 --- a/module/mes/module.mes +++ b/module/mes/module.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/optargs.mes b/module/mes/optargs.mes index 94b0c39b..269c7ca1 100644 --- a/module/mes/optargs.mes +++ b/module/mes/optargs.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/peg.mes b/module/mes/peg.mes index 261178b3..83b39af3 100644 --- a/module/mes/peg.mes +++ b/module/mes/peg.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/pmatch.mes b/module/mes/pmatch.mes index 1242a899..114825ee 100644 --- a/module/mes/pmatch.mes +++ b/module/mes/pmatch.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/pmatch.scm b/module/mes/pmatch.scm index d06add25..1dfd0ff6 100644 --- a/module/mes/pmatch.scm +++ b/module/mes/pmatch.scm @@ -3,7 +3,7 @@ ;;; Copyright (C) 2009, 2010, 2012 Free Software Foundation, Inc ;;; Copyright (C) 2005,2006,2007 Oleg Kiselyov ;;; Copyright (C) 2007 Daniel P. Friedman -;;; Copyright (C) 2018 Jan Nieuwenhuizen +;;; Copyright (C) 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public diff --git a/module/mes/posix.mes b/module/mes/posix.mes index 3482e55d..a8c8a285 100644 --- a/module/mes/posix.mes +++ b/module/mes/posix.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017 Jan Nieuwenhuizen +;;; Copyright © 2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/pretty-print.mes b/module/mes/pretty-print.mes index 8869fb96..617cd3d6 100644 --- a/module/mes/pretty-print.mes +++ b/module/mes/pretty-print.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/psyntax-0.mes b/module/mes/psyntax-0.mes index 54d83162..49dd013a 100644 --- a/module/mes/psyntax-0.mes +++ b/module/mes/psyntax-0.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/psyntax-1.mes b/module/mes/psyntax-1.mes index e7209551..7aa48069 100644 --- a/module/mes/psyntax-1.mes +++ b/module/mes/psyntax-1.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/psyntax.mes b/module/mes/psyntax.mes index abaa9969..f02e3952 100644 --- a/module/mes/psyntax.mes +++ b/module/mes/psyntax.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/quasiquote.mes b/module/mes/quasiquote.mes index ee8bca2b..46144e5c 100644 --- a/module/mes/quasiquote.mes +++ b/module/mes/quasiquote.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/quasisyntax.mes b/module/mes/quasisyntax.mes index 626abb9a..9f674d38 100644 --- a/module/mes/quasisyntax.mes +++ b/module/mes/quasisyntax.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/repl.mes b/module/mes/repl.mes index 73112acf..cdb648b2 100644 --- a/module/mes/repl.mes +++ b/module/mes/repl.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; @@ -28,7 +28,7 @@ (define welcome (string-append "Mes " %version " -Copyright (C) 2016,2017,2018 Jan Nieuwenhuizen +Copyright (C) 2016,2017,2018 Jan (janneke) Nieuwenhuizen Mes comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it diff --git a/module/mes/scm.mes b/module/mes/scm.mes index 805b0318..7e5ea618 100644 --- a/module/mes/scm.mes +++ b/module/mes/scm.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/syntax.mes b/module/mes/syntax.mes index 2a6ac581..4ff64e78 100644 --- a/module/mes/syntax.mes +++ b/module/mes/syntax.mes @@ -1,7 +1,7 @@ ;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/syntax.scm b/module/mes/syntax.scm index 16293276..7493ef9d 100644 --- a/module/mes/syntax.scm +++ b/module/mes/syntax.scm @@ -2,7 +2,7 @@ ;;; Mes --- Maxwell Equations of Software ;;; Copyright (c) 1993-2004 by Richard Kelsey and Jonathan Rees. -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/test.mes b/module/mes/test.mes index 98dc3286..e6eb57d5 100644 --- a/module/mes/test.mes +++ b/module/mes/test.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/mes/type-0.mes b/module/mes/type-0.mes index 16ee84bb..dc83b054 100644 --- a/module/mes/type-0.mes +++ b/module/mes/type-0.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lalr.mes b/module/nyacc/lalr.mes index 046f605a..a4af1c1e 100644 --- a/module/nyacc/lalr.mes +++ b/module/nyacc/lalr.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lang/c99/cpp.mes b/module/nyacc/lang/c99/cpp.mes index c54b5377..75d1f902 100644 --- a/module/nyacc/lang/c99/cpp.mes +++ b/module/nyacc/lang/c99/cpp.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lang/c99/parser.mes b/module/nyacc/lang/c99/parser.mes index 4e68a8a1..00031d5e 100644 --- a/module/nyacc/lang/c99/parser.mes +++ b/module/nyacc/lang/c99/parser.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lang/c99/pprint.mes b/module/nyacc/lang/c99/pprint.mes index 39ce15ff..593da972 100644 --- a/module/nyacc/lang/c99/pprint.mes +++ b/module/nyacc/lang/c99/pprint.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017 Jan Nieuwenhuizen +;;; Copyright © 2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lang/calc/parser.mes b/module/nyacc/lang/calc/parser.mes index e4fac015..0884da86 100644 --- a/module/nyacc/lang/calc/parser.mes +++ b/module/nyacc/lang/calc/parser.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lang/util.mes b/module/nyacc/lang/util.mes index b63485e2..860899b5 100644 --- a/module/nyacc/lang/util.mes +++ b/module/nyacc/lang/util.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/lex.mes b/module/nyacc/lex.mes index 8175d332..ee3ff6af 100644 --- a/module/nyacc/lex.mes +++ b/module/nyacc/lex.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/parse.mes b/module/nyacc/parse.mes index 0df9b3ca..94e71960 100644 --- a/module/nyacc/parse.mes +++ b/module/nyacc/parse.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/nyacc/util.mes b/module/nyacc/util.mes index 9c8835d0..e122c2d0 100644 --- a/module/nyacc/util.mes +++ b/module/nyacc/util.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/rnrs/arithmetic/bitwise.mes b/module/rnrs/arithmetic/bitwise.mes index 73584d1f..482c1444 100644 --- a/module/rnrs/arithmetic/bitwise.mes +++ b/module/rnrs/arithmetic/bitwise.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-0.mes b/module/srfi/srfi-0.mes index 5330b067..cffa9b20 100644 --- a/module/srfi/srfi-0.mes +++ b/module/srfi/srfi-0.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-1.mes b/module/srfi/srfi-1.mes index b4fb0067..5a413126 100644 --- a/module/srfi/srfi-1.mes +++ b/module/srfi/srfi-1.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017 Jan Nieuwenhuizen +;;; Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-13.mes b/module/srfi/srfi-13.mes index 4e77bd0e..bf6a06e9 100644 --- a/module/srfi/srfi-13.mes +++ b/module/srfi/srfi-13.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-14.mes b/module/srfi/srfi-14.mes index 799637ca..f2488a5a 100644 --- a/module/srfi/srfi-14.mes +++ b/module/srfi/srfi-14.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-16.mes b/module/srfi/srfi-16.mes index 87930816..be69949a 100644 --- a/module/srfi/srfi-16.mes +++ b/module/srfi/srfi-16.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-26.mes b/module/srfi/srfi-26.mes index a22c2822..0471654e 100644 --- a/module/srfi/srfi-26.mes +++ b/module/srfi/srfi-26.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-43.mes b/module/srfi/srfi-43.mes index 4fe719c2..d7c84f7f 100644 --- a/module/srfi/srfi-43.mes +++ b/module/srfi/srfi-43.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/srfi/srfi-9.mes b/module/srfi/srfi-9.mes index 04d2f9c0..b09e2597 100644 --- a/module/srfi/srfi-9.mes +++ b/module/srfi/srfi-9.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017 Jan Nieuwenhuizen +;;; Copyright © 2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/module/sxml/xpath.mes b/module/sxml/xpath.mes index 41da96ea..c99ac498 100644 --- a/module/sxml/xpath.mes +++ b/module/sxml/xpath.mes @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/argv.c b/scaffold/argv.c index c9558a83..fe47f97d 100644 --- a/scaffold/argv.c +++ b/scaffold/argv.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/boot/00-zero.scm b/scaffold/boot/00-zero.scm index b508a744..ffc6b773 100644 --- a/scaffold/boot/00-zero.scm +++ b/scaffold/boot/00-zero.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/01-true.scm b/scaffold/boot/01-true.scm index b3fbd59e..71262e02 100644 --- a/scaffold/boot/01-true.scm +++ b/scaffold/boot/01-true.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/02-symbol.scm b/scaffold/boot/02-symbol.scm index c393e80d..a008a23e 100644 --- a/scaffold/boot/02-symbol.scm +++ b/scaffold/boot/02-symbol.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/03-string.scm b/scaffold/boot/03-string.scm index 5e2eaa5b..c3380684 100644 --- a/scaffold/boot/03-string.scm +++ b/scaffold/boot/03-string.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/04-cons.scm b/scaffold/boot/04-cons.scm index bf5c61f2..f7ee4d36 100644 --- a/scaffold/boot/04-cons.scm +++ b/scaffold/boot/04-cons.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/04-quote.scm b/scaffold/boot/04-quote.scm index 8e1c095c..efc08f86 100644 --- a/scaffold/boot/04-quote.scm +++ b/scaffold/boot/04-quote.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/05-list.scm b/scaffold/boot/05-list.scm index 92805290..ef68d074 100644 --- a/scaffold/boot/05-list.scm +++ b/scaffold/boot/05-list.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/06-tick.scm b/scaffold/boot/06-tick.scm index 9bd5641a..c4354af6 100644 --- a/scaffold/boot/06-tick.scm +++ b/scaffold/boot/06-tick.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/07-if.scm b/scaffold/boot/07-if.scm index 1b09daf4..265cc76a 100644 --- a/scaffold/boot/07-if.scm +++ b/scaffold/boot/07-if.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/08-if-if.scm b/scaffold/boot/08-if-if.scm index 0bc959af..58853f1a 100644 --- a/scaffold/boot/08-if-if.scm +++ b/scaffold/boot/08-if-if.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/10-cons.scm b/scaffold/boot/10-cons.scm index bf5c61f2..f7ee4d36 100644 --- a/scaffold/boot/10-cons.scm +++ b/scaffold/boot/10-cons.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/11-list.scm b/scaffold/boot/11-list.scm index 92805290..ef68d074 100644 --- a/scaffold/boot/11-list.scm +++ b/scaffold/boot/11-list.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/12-car.scm b/scaffold/boot/12-car.scm index 32264a2e..f6dc8698 100644 --- a/scaffold/boot/12-car.scm +++ b/scaffold/boot/12-car.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/13-cdr.scm b/scaffold/boot/13-cdr.scm index 80285124..d76f302c 100644 --- a/scaffold/boot/13-cdr.scm +++ b/scaffold/boot/13-cdr.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/14-exit.scm b/scaffold/boot/14-exit.scm index 43ffd0e5..8c738cc2 100644 --- a/scaffold/boot/14-exit.scm +++ b/scaffold/boot/14-exit.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/15-display.scm b/scaffold/boot/15-display.scm index bfb1eea7..89cadde4 100644 --- a/scaffold/boot/15-display.scm +++ b/scaffold/boot/15-display.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/16-if-eq-quote.scm b/scaffold/boot/16-if-eq-quote.scm index a7d116b0..e0218659 100644 --- a/scaffold/boot/16-if-eq-quote.scm +++ b/scaffold/boot/16-if-eq-quote.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/20-define-quote.scm b/scaffold/boot/20-define-quote.scm index 3d7b66b7..236bba59 100644 --- a/scaffold/boot/20-define-quote.scm +++ b/scaffold/boot/20-define-quote.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/20-define-quoted.scm b/scaffold/boot/20-define-quoted.scm index 4ac1a37d..1828fc9e 100644 --- a/scaffold/boot/20-define-quoted.scm +++ b/scaffold/boot/20-define-quoted.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/20-define.scm b/scaffold/boot/20-define.scm index d2a761d5..238b5cbd 100644 --- a/scaffold/boot/20-define.scm +++ b/scaffold/boot/20-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/21-define-procedure.scm b/scaffold/boot/21-define-procedure.scm index 3da58daa..b1cddfb6 100644 --- a/scaffold/boot/21-define-procedure.scm +++ b/scaffold/boot/21-define-procedure.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/22-define-procedure-2.scm b/scaffold/boot/22-define-procedure-2.scm index d0095a91..747c16b8 100644 --- a/scaffold/boot/22-define-procedure-2.scm +++ b/scaffold/boot/22-define-procedure-2.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/23-begin.scm b/scaffold/boot/23-begin.scm index 5199c45e..5fd9091e 100644 --- a/scaffold/boot/23-begin.scm +++ b/scaffold/boot/23-begin.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/24-begin-define.scm b/scaffold/boot/24-begin-define.scm index 95f1c8a5..2bd96471 100644 --- a/scaffold/boot/24-begin-define.scm +++ b/scaffold/boot/24-begin-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/25-begin-define-2.scm b/scaffold/boot/25-begin-define-2.scm index 5bdf6e62..f5a94cdb 100644 --- a/scaffold/boot/25-begin-define-2.scm +++ b/scaffold/boot/25-begin-define-2.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/26-begin-define-later.scm b/scaffold/boot/26-begin-define-later.scm index 420c3ab3..a49a638d 100644 --- a/scaffold/boot/26-begin-define-later.scm +++ b/scaffold/boot/26-begin-define-later.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/26-define-define.scm b/scaffold/boot/26-define-define.scm index 04c0508f..fdcdd717 100644 --- a/scaffold/boot/26-define-define.scm +++ b/scaffold/boot/26-define-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/27-lambda-define.scm b/scaffold/boot/27-lambda-define.scm index bc161269..4aeac009 100644 --- a/scaffold/boot/27-lambda-define.scm +++ b/scaffold/boot/27-lambda-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/28-define-define.scm b/scaffold/boot/28-define-define.scm index 55467edf..330e9151 100644 --- a/scaffold/boot/28-define-define.scm +++ b/scaffold/boot/28-define-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/29-lambda-define.scm b/scaffold/boot/29-lambda-define.scm index 1c2c23a2..d2e88124 100644 --- a/scaffold/boot/29-lambda-define.scm +++ b/scaffold/boot/29-lambda-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2a-lambda-lambda.scm b/scaffold/boot/2a-lambda-lambda.scm index 8a46af62..65c996d5 100644 --- a/scaffold/boot/2a-lambda-lambda.scm +++ b/scaffold/boot/2a-lambda-lambda.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2b-define-lambda.scm b/scaffold/boot/2b-define-lambda.scm index 16d83af4..fc84ed29 100644 --- a/scaffold/boot/2b-define-lambda.scm +++ b/scaffold/boot/2b-define-lambda.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2c-define-lambda-recurse.scm b/scaffold/boot/2c-define-lambda-recurse.scm index 2559bcc4..cc480db8 100644 --- a/scaffold/boot/2c-define-lambda-recurse.scm +++ b/scaffold/boot/2c-define-lambda-recurse.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2d-compose.scm b/scaffold/boot/2d-compose.scm index 34282358..c76daab8 100644 --- a/scaffold/boot/2d-compose.scm +++ b/scaffold/boot/2d-compose.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2d-define-lambda-set.scm b/scaffold/boot/2d-define-lambda-set.scm index 765ef828..553c7940 100644 --- a/scaffold/boot/2d-define-lambda-set.scm +++ b/scaffold/boot/2d-define-lambda-set.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2e-define-first.scm b/scaffold/boot/2e-define-first.scm index 6c2e1598..cf21d882 100644 --- a/scaffold/boot/2e-define-first.scm +++ b/scaffold/boot/2e-define-first.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2f-define-second.scm b/scaffold/boot/2f-define-second.scm index 35296d72..64900126 100644 --- a/scaffold/boot/2f-define-second.scm +++ b/scaffold/boot/2f-define-second.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/2g-vector.scm b/scaffold/boot/2g-vector.scm index 0752d163..f488cc1d 100644 --- a/scaffold/boot/2g-vector.scm +++ b/scaffold/boot/2g-vector.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/30-capture.scm b/scaffold/boot/30-capture.scm index 438f56ec..5ee284b2 100644 --- a/scaffold/boot/30-capture.scm +++ b/scaffold/boot/30-capture.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/31-capture-define.scm b/scaffold/boot/31-capture-define.scm index 7520329d..77575c8b 100644 --- a/scaffold/boot/31-capture-define.scm +++ b/scaffold/boot/31-capture-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/32-capture-modify-close.scm b/scaffold/boot/32-capture-modify-close.scm index 733576f1..fcbf66c7 100644 --- a/scaffold/boot/32-capture-modify-close.scm +++ b/scaffold/boot/32-capture-modify-close.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/33-procedure-override-close.scm b/scaffold/boot/33-procedure-override-close.scm index b1a3b9d9..cf358588 100644 --- a/scaffold/boot/33-procedure-override-close.scm +++ b/scaffold/boot/33-procedure-override-close.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/34-cdr-override-close.scm b/scaffold/boot/34-cdr-override-close.scm index f0ba56c6..6712bc27 100644 --- a/scaffold/boot/34-cdr-override-close.scm +++ b/scaffold/boot/34-cdr-override-close.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/35-closure-modify.scm b/scaffold/boot/35-closure-modify.scm index 68fd920b..c3f44fb5 100644 --- a/scaffold/boot/35-closure-modify.scm +++ b/scaffold/boot/35-closure-modify.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/36-closure-override.scm b/scaffold/boot/36-closure-override.scm index b4ed75a1..b43d781f 100644 --- a/scaffold/boot/36-closure-override.scm +++ b/scaffold/boot/36-closure-override.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/37-closure-lambda.scm b/scaffold/boot/37-closure-lambda.scm index c25386e8..7b759fcb 100644 --- a/scaffold/boot/37-closure-lambda.scm +++ b/scaffold/boot/37-closure-lambda.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/38-simple-format.scm b/scaffold/boot/38-simple-format.scm index 37a70e72..f2fcab90 100644 --- a/scaffold/boot/38-simple-format.scm +++ b/scaffold/boot/38-simple-format.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/40-define-macro.scm b/scaffold/boot/40-define-macro.scm index 966d1681..df9dc470 100644 --- a/scaffold/boot/40-define-macro.scm +++ b/scaffold/boot/40-define-macro.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/41-when.scm b/scaffold/boot/41-when.scm index 196988da..252984c6 100644 --- a/scaffold/boot/41-when.scm +++ b/scaffold/boot/41-when.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/42-if-when.scm b/scaffold/boot/42-if-when.scm index 3cd43bb9..866c1cad 100644 --- a/scaffold/boot/42-if-when.scm +++ b/scaffold/boot/42-if-when.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/43-or.scm b/scaffold/boot/43-or.scm index 05ed3018..0a75fcce 100644 --- a/scaffold/boot/43-or.scm +++ b/scaffold/boot/43-or.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/44-or-if.scm b/scaffold/boot/44-or-if.scm index b6f127e4..5ea6d570 100644 --- a/scaffold/boot/44-or-if.scm +++ b/scaffold/boot/44-or-if.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/45-pass-if.scm b/scaffold/boot/45-pass-if.scm index b58ceccf..091ade9e 100644 --- a/scaffold/boot/45-pass-if.scm +++ b/scaffold/boot/45-pass-if.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/46-report.scm b/scaffold/boot/46-report.scm index 1b7793b1..afbb668d 100644 --- a/scaffold/boot/46-report.scm +++ b/scaffold/boot/46-report.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/47-pass-if-eq.scm b/scaffold/boot/47-pass-if-eq.scm index 662c0f22..07b0b375 100644 --- a/scaffold/boot/47-pass-if-eq.scm +++ b/scaffold/boot/47-pass-if-eq.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/48-let.scm b/scaffold/boot/48-let.scm index 71a57f25..3ca58d83 100644 --- a/scaffold/boot/48-let.scm +++ b/scaffold/boot/48-let.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/49-macro-override.scm b/scaffold/boot/49-macro-override.scm index 1fa8c982..3c768241 100644 --- a/scaffold/boot/49-macro-override.scm +++ b/scaffold/boot/49-macro-override.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/4a-define-macro-define-macro.scm b/scaffold/boot/4a-define-macro-define-macro.scm index 8aaf7e05..ff781db5 100644 --- a/scaffold/boot/4a-define-macro-define-macro.scm +++ b/scaffold/boot/4a-define-macro-define-macro.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/4b-define-macro-define.scm b/scaffold/boot/4b-define-macro-define.scm index 9d6327af..b1c76654 100644 --- a/scaffold/boot/4b-define-macro-define.scm +++ b/scaffold/boot/4b-define-macro-define.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/4c-quasiquote.scm b/scaffold/boot/4c-quasiquote.scm index ea01c556..f2a48b8e 100644 --- a/scaffold/boot/4c-quasiquote.scm +++ b/scaffold/boot/4c-quasiquote.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/4d-let-map.scm b/scaffold/boot/4d-let-map.scm index fcd56e88..dd848edc 100644 --- a/scaffold/boot/4d-let-map.scm +++ b/scaffold/boot/4d-let-map.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/4e-let-global.scm b/scaffold/boot/4e-let-global.scm index d52664b0..3560fb5f 100644 --- a/scaffold/boot/4e-let-global.scm +++ b/scaffold/boot/4e-let-global.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/50-primitive-load.scm b/scaffold/boot/50-primitive-load.scm index 891c61eb..3ded9a8d 100644 --- a/scaffold/boot/50-primitive-load.scm +++ b/scaffold/boot/50-primitive-load.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/51-module.scm b/scaffold/boot/51-module.scm index 7801aebb..2205dc5a 100644 --- a/scaffold/boot/51-module.scm +++ b/scaffold/boot/51-module.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/52-define-module.scm b/scaffold/boot/52-define-module.scm index f2d18a3f..5b7e0c17 100644 --- a/scaffold/boot/52-define-module.scm +++ b/scaffold/boot/52-define-module.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/53-closure-display.scm b/scaffold/boot/53-closure-display.scm index 3a4a5501..14f31e7b 100644 --- a/scaffold/boot/53-closure-display.scm +++ b/scaffold/boot/53-closure-display.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/60-let-syntax.scm b/scaffold/boot/60-let-syntax.scm index 30881599..b3d61040 100644 --- a/scaffold/boot/60-let-syntax.scm +++ b/scaffold/boot/60-let-syntax.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; @@ -189,7 +189,7 @@ ;;; Mes --- Maxwell Equations of Software ;;; Copyright (c) 1993-2004 by Richard Kelsey and Jonathan Rees. -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/data/bar.mes b/scaffold/boot/data/bar.mes index 79d1153f..5bb25ed4 100644 --- a/scaffold/boot/data/bar.mes +++ b/scaffold/boot/data/bar.mes @@ -1,7 +1,7 @@ ;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/data/i.scm b/scaffold/boot/data/i.scm index 6b9acd48..bba93a6e 100644 --- a/scaffold/boot/data/i.scm +++ b/scaffold/boot/data/i.scm @@ -1,5 +1,5 @@ ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/boot/data/module.mes b/scaffold/boot/data/module.mes index bafc766a..9332ee85 100644 --- a/scaffold/boot/data/module.mes +++ b/scaffold/boot/data/module.mes @@ -1,7 +1,7 @@ ;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scaffold/cons-mes.c b/scaffold/cons-mes.c index 8f21d4cc..1c89cf9a 100644 --- a/scaffold/cons-mes.c +++ b/scaffold/cons-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/hello.c b/scaffold/hello.c index 78b2478b..19441f25 100644 --- a/scaffold/hello.c +++ b/scaffold/hello.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/m.c b/scaffold/m.c index 614aba70..36f547ab 100644 --- a/scaffold/m.c +++ b/scaffold/m.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/main.c b/scaffold/main.c index 7ab20bc4..5c02ddfe 100644 --- a/scaffold/main.c +++ b/scaffold/main.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/malloc.c b/scaffold/malloc.c index 9aeddc97..df13c289 100644 --- a/scaffold/malloc.c +++ b/scaffold/malloc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/micro-mes.c b/scaffold/micro-mes.c index a019fd5c..2b3f9f4b 100644 --- a/scaffold/micro-mes.c +++ b/scaffold/micro-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/mini-mes.c b/scaffold/mini-mes.c index d4294f24..9b99a265 100644 --- a/scaffold/mini-mes.c +++ b/scaffold/mini-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/00-exit-0.c b/scaffold/tests/00-exit-0.c index 5aee9799..210fc11e 100644 --- a/scaffold/tests/00-exit-0.c +++ b/scaffold/tests/00-exit-0.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/01-return-0.c b/scaffold/tests/01-return-0.c index 23799b2f..42554c82 100644 --- a/scaffold/tests/01-return-0.c +++ b/scaffold/tests/01-return-0.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/02-return-1.c b/scaffold/tests/02-return-1.c index 94d0bf97..c74b455c 100644 --- a/scaffold/tests/02-return-1.c +++ b/scaffold/tests/02-return-1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/03-call.c b/scaffold/tests/03-call.c index 1359a96c..c945e4b4 100644 --- a/scaffold/tests/03-call.c +++ b/scaffold/tests/03-call.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/04-call-0.c b/scaffold/tests/04-call-0.c index 38fa873c..169a9416 100644 --- a/scaffold/tests/04-call-0.c +++ b/scaffold/tests/04-call-0.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/05-call-1.c b/scaffold/tests/05-call-1.c index b733f6f9..e83ae46d 100644 --- a/scaffold/tests/05-call-1.c +++ b/scaffold/tests/05-call-1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/06-call-!1.c b/scaffold/tests/06-call-!1.c index 283771e3..2e8c8063 100644 --- a/scaffold/tests/06-call-!1.c +++ b/scaffold/tests/06-call-!1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/07-include.c b/scaffold/tests/07-include.c index 98da8d4e..0875b5ec 100644 --- a/scaffold/tests/07-include.c +++ b/scaffold/tests/07-include.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/10-if-0.c b/scaffold/tests/10-if-0.c index 269bb19e..fd9c5e8a 100644 --- a/scaffold/tests/10-if-0.c +++ b/scaffold/tests/10-if-0.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/11-if-1.c b/scaffold/tests/11-if-1.c index bf70b60d..28771414 100644 --- a/scaffold/tests/11-if-1.c +++ b/scaffold/tests/11-if-1.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/12-if-==.c b/scaffold/tests/12-if-==.c index 4b5ab34f..efdbaa22 100644 --- a/scaffold/tests/12-if-==.c +++ b/scaffold/tests/12-if-==.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/13-if-!=.c b/scaffold/tests/13-if-!=.c index 01b3e509..0ae9c5f2 100644 --- a/scaffold/tests/13-if-!=.c +++ b/scaffold/tests/13-if-!=.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/14-if-goto.c b/scaffold/tests/14-if-goto.c index 9b93c7f4..4f09f72d 100644 --- a/scaffold/tests/14-if-goto.c +++ b/scaffold/tests/14-if-goto.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/15-if-!f.c b/scaffold/tests/15-if-!f.c index 2bdf30e9..48813b9e 100644 --- a/scaffold/tests/15-if-!f.c +++ b/scaffold/tests/15-if-!f.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/16-if-t.c b/scaffold/tests/16-if-t.c index 2bdf30e9..48813b9e 100644 --- a/scaffold/tests/16-if-t.c +++ b/scaffold/tests/16-if-t.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/20-while.c b/scaffold/tests/20-while.c index 55be3133..dfc4b92e 100644 --- a/scaffold/tests/20-while.c +++ b/scaffold/tests/20-while.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/21-char[].c b/scaffold/tests/21-char[].c index 2a5e5158..f9573591 100644 --- a/scaffold/tests/21-char[].c +++ b/scaffold/tests/21-char[].c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/22-while-char[].c b/scaffold/tests/22-while-char[].c index 05d2eab2..a339c41f 100644 --- a/scaffold/tests/22-while-char[].c +++ b/scaffold/tests/22-while-char[].c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/23-pointer.c b/scaffold/tests/23-pointer.c index 0ae2d78c..a1770cb2 100644 --- a/scaffold/tests/23-pointer.c +++ b/scaffold/tests/23-pointer.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/30-strlen.c b/scaffold/tests/30-strlen.c index e6a88f68..f430bfe9 100644 --- a/scaffold/tests/30-strlen.c +++ b/scaffold/tests/30-strlen.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/31-eputs.c b/scaffold/tests/31-eputs.c index 4fc41eaf..9ab1dc40 100644 --- a/scaffold/tests/31-eputs.c +++ b/scaffold/tests/31-eputs.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/32-compare.c b/scaffold/tests/32-compare.c index 5b854da8..8175205f 100644 --- a/scaffold/tests/32-compare.c +++ b/scaffold/tests/32-compare.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/33-and-or.c b/scaffold/tests/33-and-or.c index 070b9d81..38d52ac3 100644 --- a/scaffold/tests/33-and-or.c +++ b/scaffold/tests/33-and-or.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/34-pre-post.c b/scaffold/tests/34-pre-post.c index 2fdb2ea1..0e6f4829 100644 --- a/scaffold/tests/34-pre-post.c +++ b/scaffold/tests/34-pre-post.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/35-compare-char.c b/scaffold/tests/35-compare-char.c index 20271cd5..bbc6adec 100644 --- a/scaffold/tests/35-compare-char.c +++ b/scaffold/tests/35-compare-char.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/36-compare-arithmetic.c b/scaffold/tests/36-compare-arithmetic.c index b87b704c..c434ee5b 100644 --- a/scaffold/tests/36-compare-arithmetic.c +++ b/scaffold/tests/36-compare-arithmetic.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/37-compare-assign.c b/scaffold/tests/37-compare-assign.c index d84652d5..89e4db08 100644 --- a/scaffold/tests/37-compare-assign.c +++ b/scaffold/tests/37-compare-assign.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/38-compare-call.c b/scaffold/tests/38-compare-call.c index accd4b23..fdf5281e 100644 --- a/scaffold/tests/38-compare-call.c +++ b/scaffold/tests/38-compare-call.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/40-if-else.c b/scaffold/tests/40-if-else.c index 356d0abb..6a8b0a3f 100644 --- a/scaffold/tests/40-if-else.c +++ b/scaffold/tests/40-if-else.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/41-?.c b/scaffold/tests/41-?.c index 283c2c13..8bc4b47d 100644 --- a/scaffold/tests/41-?.c +++ b/scaffold/tests/41-?.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/42-goto-label.c b/scaffold/tests/42-goto-label.c index 8357cdd2..ab2a3227 100644 --- a/scaffold/tests/42-goto-label.c +++ b/scaffold/tests/42-goto-label.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/43-for-do-while.c b/scaffold/tests/43-for-do-while.c index 9a40ad64..a11793e5 100644 --- a/scaffold/tests/43-for-do-while.c +++ b/scaffold/tests/43-for-do-while.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/44-switch.c b/scaffold/tests/44-switch.c index 8ba8ee78..8713bda0 100644 --- a/scaffold/tests/44-switch.c +++ b/scaffold/tests/44-switch.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/45-void-call.c b/scaffold/tests/45-void-call.c index 48e8d60e..dcd6467d 100644 --- a/scaffold/tests/45-void-call.c +++ b/scaffold/tests/45-void-call.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/50-assert.c b/scaffold/tests/50-assert.c index ae42b845..7f9c9d9f 100644 --- a/scaffold/tests/50-assert.c +++ b/scaffold/tests/50-assert.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/51-strcmp.c b/scaffold/tests/51-strcmp.c index 13bee147..5479b748 100644 --- a/scaffold/tests/51-strcmp.c +++ b/scaffold/tests/51-strcmp.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/52-itoa.c b/scaffold/tests/52-itoa.c index 80b51205..634b2ab1 100644 --- a/scaffold/tests/52-itoa.c +++ b/scaffold/tests/52-itoa.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/53-strcpy.c b/scaffold/tests/53-strcpy.c index 8ae1e1c8..106a929e 100644 --- a/scaffold/tests/53-strcpy.c +++ b/scaffold/tests/53-strcpy.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/54-argv.c b/scaffold/tests/54-argv.c index 2d2d9e69..84c5516b 100644 --- a/scaffold/tests/54-argv.c +++ b/scaffold/tests/54-argv.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/60-math.c b/scaffold/tests/60-math.c index 99612c1e..05444d31 100644 --- a/scaffold/tests/60-math.c +++ b/scaffold/tests/60-math.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/61-array.c b/scaffold/tests/61-array.c index 376a6a41..25850c5a 100644 --- a/scaffold/tests/61-array.c +++ b/scaffold/tests/61-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/63-struct-cell.c b/scaffold/tests/63-struct-cell.c index 4a3849d4..f23761ec 100644 --- a/scaffold/tests/63-struct-cell.c +++ b/scaffold/tests/63-struct-cell.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/64-make-cell.c b/scaffold/tests/64-make-cell.c index 3531eb07..c9f460ca 100644 --- a/scaffold/tests/64-make-cell.c +++ b/scaffold/tests/64-make-cell.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/65-read.c b/scaffold/tests/65-read.c index f40326e6..5b0c8d7c 100644 --- a/scaffold/tests/65-read.c +++ b/scaffold/tests/65-read.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/66-local-char-array.c b/scaffold/tests/66-local-char-array.c index 958a7db0..f13ee6db 100644 --- a/scaffold/tests/66-local-char-array.c +++ b/scaffold/tests/66-local-char-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/70-printf.c b/scaffold/tests/70-printf.c index cc56d396..9bd8a8d8 100644 --- a/scaffold/tests/70-printf.c +++ b/scaffold/tests/70-printf.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/71-struct-array.c b/scaffold/tests/71-struct-array.c index a5b49b0d..2fbc7daa 100644 --- a/scaffold/tests/71-struct-array.c +++ b/scaffold/tests/71-struct-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/72-typedef-struct-def.c b/scaffold/tests/72-typedef-struct-def.c index e774d595..a08ede5f 100644 --- a/scaffold/tests/72-typedef-struct-def.c +++ b/scaffold/tests/72-typedef-struct-def.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/73-union.c b/scaffold/tests/73-union.c index aa0a9b83..fd76049c 100644 --- a/scaffold/tests/73-union.c +++ b/scaffold/tests/73-union.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/74-multi-line-string.c b/scaffold/tests/74-multi-line-string.c index 93af9c60..e976acf9 100644 --- a/scaffold/tests/74-multi-line-string.c +++ b/scaffold/tests/74-multi-line-string.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/75-struct-union.c b/scaffold/tests/75-struct-union.c index 57d9fe28..0dabcb7f 100644 --- a/scaffold/tests/75-struct-union.c +++ b/scaffold/tests/75-struct-union.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/76-pointer-arithmetic.c b/scaffold/tests/76-pointer-arithmetic.c index 712bea03..3d528994 100644 --- a/scaffold/tests/76-pointer-arithmetic.c +++ b/scaffold/tests/76-pointer-arithmetic.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/77-pointer-assign.c b/scaffold/tests/77-pointer-assign.c index c86ae09a..ae7ce673 100644 --- a/scaffold/tests/77-pointer-assign.c +++ b/scaffold/tests/77-pointer-assign.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/78-union-struct.c b/scaffold/tests/78-union-struct.c index 81979ee4..fd0cf9ec 100644 --- a/scaffold/tests/78-union-struct.c +++ b/scaffold/tests/78-union-struct.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/79-int-array.c b/scaffold/tests/79-int-array.c index 03677ed7..00cc18bc 100644 --- a/scaffold/tests/79-int-array.c +++ b/scaffold/tests/79-int-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7a-struct-char-array.c b/scaffold/tests/7a-struct-char-array.c index 11cef4c0..05543a7a 100644 --- a/scaffold/tests/7a-struct-char-array.c +++ b/scaffold/tests/7a-struct-char-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7b-struct-int-array.c b/scaffold/tests/7b-struct-int-array.c index e402716d..838e1dd4 100644 --- a/scaffold/tests/7b-struct-int-array.c +++ b/scaffold/tests/7b-struct-int-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7c-dynarray.c b/scaffold/tests/7c-dynarray.c index ab76cb9c..1a75c86f 100644 --- a/scaffold/tests/7c-dynarray.c +++ b/scaffold/tests/7c-dynarray.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7d-cast-char.c b/scaffold/tests/7d-cast-char.c index 8aaf5a63..0ff2c3ed 100644 --- a/scaffold/tests/7d-cast-char.c +++ b/scaffold/tests/7d-cast-char.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7e-struct-array-access.c b/scaffold/tests/7e-struct-array-access.c index a645df10..e81f37a4 100644 --- a/scaffold/tests/7e-struct-array-access.c +++ b/scaffold/tests/7e-struct-array-access.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7f-struct-pointer-arithmetic.c b/scaffold/tests/7f-struct-pointer-arithmetic.c index a231139f..140e7d96 100644 --- a/scaffold/tests/7f-struct-pointer-arithmetic.c +++ b/scaffold/tests/7f-struct-pointer-arithmetic.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7g-struct-byte-word-field.c b/scaffold/tests/7g-struct-byte-word-field.c index 707391ab..f940e103 100644 --- a/scaffold/tests/7g-struct-byte-word-field.c +++ b/scaffold/tests/7g-struct-byte-word-field.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7h-struct-assign.c b/scaffold/tests/7h-struct-assign.c index 798b0151..51ab52ca 100644 --- a/scaffold/tests/7h-struct-assign.c +++ b/scaffold/tests/7h-struct-assign.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7i-struct-struct.c b/scaffold/tests/7i-struct-struct.c index 8c8b6786..3418be72 100644 --- a/scaffold/tests/7i-struct-struct.c +++ b/scaffold/tests/7i-struct-struct.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7j-strtoull.c b/scaffold/tests/7j-strtoull.c index d2abddf1..db78a9a4 100644 --- a/scaffold/tests/7j-strtoull.c +++ b/scaffold/tests/7j-strtoull.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7k-for-each-elem.c b/scaffold/tests/7k-for-each-elem.c index 2abf2637..0082f5fb 100644 --- a/scaffold/tests/7k-for-each-elem.c +++ b/scaffold/tests/7k-for-each-elem.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7l-struct-any-size-array.c b/scaffold/tests/7l-struct-any-size-array.c index 08bfa1c6..40a3318c 100644 --- a/scaffold/tests/7l-struct-any-size-array.c +++ b/scaffold/tests/7l-struct-any-size-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7m-struct-char-array-assign.c b/scaffold/tests/7m-struct-char-array-assign.c index ea02363c..a841cfcb 100644 --- a/scaffold/tests/7m-struct-char-array-assign.c +++ b/scaffold/tests/7m-struct-char-array-assign.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/7n-struct-struct-array.c b/scaffold/tests/7n-struct-struct-array.c index 24517d5e..50e88143 100644 --- a/scaffold/tests/7n-struct-struct-array.c +++ b/scaffold/tests/7n-struct-struct-array.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/80-setjmp.c b/scaffold/tests/80-setjmp.c index f0524929..83138668 100644 --- a/scaffold/tests/80-setjmp.c +++ b/scaffold/tests/80-setjmp.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/81-qsort.c b/scaffold/tests/81-qsort.c index 15e7a27c..85901c0e 100644 --- a/scaffold/tests/81-qsort.c +++ b/scaffold/tests/81-qsort.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/exit-42.i b/scaffold/tests/exit-42.i index 3efe8fa0..e07c0f03 100644 --- a/scaffold/tests/exit-42.i +++ b/scaffold/tests/exit-42.i @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tests/t.c b/scaffold/tests/t.c index a9479400..2c737708 100644 --- a/scaffold/tests/t.c +++ b/scaffold/tests/t.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scaffold/tiny-mes.c b/scaffold/tiny-mes.c index c48b7ae1..54c6b127 100644 --- a/scaffold/tiny-mes.c +++ b/scaffold/tiny-mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/scripts/mescc.mes b/scripts/mescc.mes index 44553a99..0f78da77 100755 --- a/scripts/mescc.mes +++ b/scripts/mescc.mes @@ -19,7 +19,7 @@ exit $? !# ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/scripts/repl.mes b/scripts/repl.mes index 56f4d385..15d6b439 100755 --- a/scripts/repl.mes +++ b/scripts/repl.mes @@ -10,7 +10,7 @@ exit $? !# ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/src/gc.c b/src/gc.c index f0929ce3..9cab3e8b 100644 --- a/src/gc.c +++ b/src/gc.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017 Jan Nieuwenhuizen + * Copyright © 2016,2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/lib.c b/src/lib.c index 8b46898e..44f96f16 100644 --- a/src/lib.c +++ b/src/lib.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/math.c b/src/math.c index 2b47b299..b17d0ffe 100644 --- a/src/math.c +++ b/src/math.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/mes.c b/src/mes.c index d3443c49..1667969b 100644 --- a/src/mes.c +++ b/src/mes.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/posix.c b/src/posix.c index a245e972..2e6b3a8c 100644 --- a/src/posix.c +++ b/src/posix.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/reader.c b/src/reader.c index 8a62df4c..4bdafaf6 100644 --- a/src/reader.c +++ b/src/reader.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/src/vector.c b/src/vector.c index 72eeed7a..36a9e09c 100644 --- a/src/vector.c +++ b/src/vector.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2016,2017,2018 Jan Nieuwenhuizen + * Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/stage0/elf-0footer.hex2 b/stage0/elf-0footer.hex2 index 3db17edb..cfae2e99 100644 --- a/stage0/elf-0footer.hex2 +++ b/stage0/elf-0footer.hex2 @@ -1,4 +1,4 @@ -### Copyright (C) 2017 Jan Nieuwenhuizen +### Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ### This file is part of stage0. ### ### stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/elf32-0header.hex2 b/stage0/elf32-0header.hex2 index 69d92458..36e584a1 100644 --- a/stage0/elf32-0header.hex2 +++ b/stage0/elf32-0header.hex2 @@ -1,5 +1,5 @@ ### Copyright (C) 2016 Jeremiah Orians -### Copyright (C) 2017 Jan Nieuwenhuizen +### Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ### This file is part of stage0. ### ### stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/elf32-body-exit-42.hex2 b/stage0/elf32-body-exit-42.hex2 index 75d025e1..130f69b0 100644 --- a/stage0/elf32-body-exit-42.hex2 +++ b/stage0/elf32-body-exit-42.hex2 @@ -1,4 +1,4 @@ -### Copyright (C) 2017 Jan Nieuwenhuizen +### Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ### This file is part of stage0. ### ### stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/elf32-footer-single-main.hex2 b/stage0/elf32-footer-single-main.hex2 index 61372282..61523a9c 100644 --- a/stage0/elf32-footer-single-main.hex2 +++ b/stage0/elf32-footer-single-main.hex2 @@ -1,4 +1,4 @@ -### Copyright (C) 2017 Jan Nieuwenhuizen +### Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ### This file is part of stage0. ### ### stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/elf32-header.hex2 b/stage0/elf32-header.hex2 index 6149932e..22796679 100644 --- a/stage0/elf32-header.hex2 +++ b/stage0/elf32-header.hex2 @@ -1,5 +1,5 @@ ### Copyright (C) 2016 Jeremiah Orians -### Copyright (C) 2017 Jan Nieuwenhuizen +### Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ### This file is part of stage0. ### ### stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/elf32.hex3 b/stage0/elf32.hex3 index c4218820..f937a3cb 100644 --- a/stage0/elf32.hex3 +++ b/stage0/elf32.hex3 @@ -1,6 +1,6 @@ ;;; -*-scheme-*- ;;; Copyright (C) 2016 Jeremiah Orians -;;; Copyright (C) 2017 Jan Nieuwenhuizen +;;; Copyright (C) 2017 Jan (janneke) Nieuwenhuizen ;;; This file is part of stage0. ;;; ;;; stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/exit-42.c b/stage0/exit-42.c index 8bc91258..f4078b1b 100644 --- a/stage0/exit-42.c +++ b/stage0/exit-42.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * Mes --- Maxwell Equations of Software - * Copyright © 2017 Jan Nieuwenhuizen + * Copyright © 2017 Jan (janneke) Nieuwenhuizen * * This file is part of Mes. * diff --git a/stage0/x86.M1 b/stage0/x86.M1 index ca7cf5d5..85f9c3ad 100644 --- a/stage0/x86.M1 +++ b/stage0/x86.M1 @@ -1,5 +1,5 @@ ### Mes --- Maxwell Equations of Software -### Copyright © 2017 Jan Nieuwenhuizen +### Copyright © 2017 Jan (janneke) Nieuwenhuizen ### ### This file is part of Mes. ### diff --git a/test.sh b/test.sh index 24f3d503..f1abf12c 100755 --- a/test.sh +++ b/test.sh @@ -1,7 +1,7 @@ #! /bin/sh # Mes --- Maxwell Equations of Software -# Copyright © 2017,2018 Jan Nieuwenhuizen +# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/tests/base.test b/tests/base.test index 48df2278..4ee116f9 100755 --- a/tests/base.test +++ b/tests/base.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/base.test-guile b/tests/base.test-guile index 98c51764..d293e480 100755 --- a/tests/base.test-guile +++ b/tests/base.test-guile @@ -1,7 +1,7 @@ #! /bin/sh # Mes --- Maxwell Equations of Software -# Copyright © 2017,2018 Jan Nieuwenhuizen +# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of Mes. # diff --git a/tests/boot.test b/tests/boot.test index a5e1ac9b..4b627638 100755 --- a/tests/boot.test +++ b/tests/boot.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/catch.test b/tests/catch.test index 59421d56..efacab33 100755 --- a/tests/catch.test +++ b/tests/catch.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/closure.test b/tests/closure.test index 5bf438f5..3dc56e6d 100755 --- a/tests/closure.test +++ b/tests/closure.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/cwv.test b/tests/cwv.test index b5fd4b98..8a0f606e 100755 --- a/tests/cwv.test +++ b/tests/cwv.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/data/load.scm b/tests/data/load.scm index 9cd19d22..5c2a02a9 100644 --- a/tests/data/load.scm +++ b/tests/data/load.scm @@ -1,7 +1,7 @@ ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/display.test b/tests/display.test index ae9c3858..4434a048 100755 --- a/tests/display.test +++ b/tests/display.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/fluids.test b/tests/fluids.test index a63e29a5..4aefd81c 100755 --- a/tests/fluids.test +++ b/tests/fluids.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/getopt-long.test b/tests/getopt-long.test index a7a39cfb..e9b9bb33 100755 --- a/tests/getopt-long.test +++ b/tests/getopt-long.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/guile.test b/tests/guile.test index 7783fd7e..1a1ec6b1 100755 --- a/tests/guile.test +++ b/tests/guile.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/let-syntax.test b/tests/let-syntax.test index e1361f08..ddf6f0ae 100755 --- a/tests/let-syntax.test +++ b/tests/let-syntax.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/let.test b/tests/let.test index a9c2d8fd..ce4b8456 100755 --- a/tests/let.test +++ b/tests/let.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/match.test b/tests/match.test index 303ece53..c096c1a3 100755 --- a/tests/match.test +++ b/tests/match.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/math.test b/tests/math.test index f0542207..c01137da 100755 --- a/tests/math.test +++ b/tests/math.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/module.test b/tests/module.test index 38722de3..4bfc5720 100755 --- a/tests/module.test +++ b/tests/module.test @@ -11,7 +11,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/optargs.test b/tests/optargs.test index 8d2ace75..bd86546b 100755 --- a/tests/optargs.test +++ b/tests/optargs.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/peg.test b/tests/peg.test index 7a4b48d1..f0728f7f 100755 --- a/tests/peg.test +++ b/tests/peg.test @@ -11,7 +11,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/pmatch.test b/tests/pmatch.test index 586e7e92..6989fce4 100755 --- a/tests/pmatch.test +++ b/tests/pmatch.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2017 Jan Nieuwenhuizen +;;; Copyright © 2017 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/psyntax.test b/tests/psyntax.test index 2c557868..41221619 100755 --- a/tests/psyntax.test +++ b/tests/psyntax.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/quasiquote.test b/tests/quasiquote.test index 77b16cf8..c86ac4f0 100755 --- a/tests/quasiquote.test +++ b/tests/quasiquote.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/record.test b/tests/record.test index 83a720a4..deb7e928 100755 --- a/tests/record.test +++ b/tests/record.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/scm.test b/tests/scm.test index d93c9a4a..853a4501 100755 --- a/tests/scm.test +++ b/tests/scm.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/srfi-1.test b/tests/srfi-1.test index 77573a16..8d386c75 100755 --- a/tests/srfi-1.test +++ b/tests/srfi-1.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/srfi-13.test b/tests/srfi-13.test index 65d8dc5f..1f51fe2e 100755 --- a/tests/srfi-13.test +++ b/tests/srfi-13.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/srfi-14.test b/tests/srfi-14.test index 94dda58b..82941dc7 100755 --- a/tests/srfi-14.test +++ b/tests/srfi-14.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016 Jan Nieuwenhuizen +;;; Copyright © 2016 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/srfi-16.test b/tests/srfi-16.test index b7395d91..061d721c 100755 --- a/tests/srfi-16.test +++ b/tests/srfi-16.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2018 Jan Nieuwenhuizen +;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/syntax.test b/tests/syntax.test index 84ea994f..0ebf6305 100755 --- a/tests/syntax.test +++ b/tests/syntax.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;; diff --git a/tests/vector.test b/tests/vector.test index 752e195c..1e590361 100755 --- a/tests/vector.test +++ b/tests/vector.test @@ -9,7 +9,7 @@ exit $? ;;; -*-scheme-*- ;;; Mes --- Maxwell Equations of Software -;;; Copyright © 2016,2017,2018 Jan Nieuwenhuizen +;;; Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of Mes. ;;;