From rstrandh at common-lisp.net Tue Feb 8 03:41:56 2011 From: rstrandh at common-lisp.net (Robert Strandh) Date: Mon, 07 Feb 2011 22:41:56 -0500 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 2b08d35041a6ade4479d45006dfef8f14f28daec Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SICL, bricks for implementors of Common Lisp systems. ". The branch, master has been updated via 2b08d35041a6ade4479d45006dfef8f14f28daec (commit) from bc43d8cdc26a3434fdbce80df4fc07ab336da930 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2b08d35041a6ade4479d45006dfef8f14f28daec Author: Robert Strandh Date: Tue Feb 8 10:32:33 2011 +0700 Introduced conditions for syntax and semantic analysis. Implemented a function for checking the order of clauses. ----------------------------------------------------------------------- Summary of changes: Code/Loop/loop.lisp | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 60 insertions(+), 0 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Feb 9 05:56:07 2011 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 09 Feb 2011 00:56:07 -0500 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 6aeca0f8d3b47e870cdd6b8fca2919cacda88679 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SICL, bricks for implementors of Common Lisp systems. ". The branch, master has been updated via 6aeca0f8d3b47e870cdd6b8fca2919cacda88679 (commit) via 3146c778c24141a364ddfe303b094c4f4148f94b (commit) via cf94e3c4ac8cea9046fe00756d93ba8530c63b95 (commit) via 1a400d555f32dd6dc57dcb91cea3b49c8eed5280 (commit) via f477e892a9db0ad60d906eeb2bf86fcf1e453ef8 (commit) via d32e4046ee240b72fde4dabeb3822c11c70bcf6d (commit) from 2b08d35041a6ade4479d45006dfef8f14f28daec (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6aeca0f8d3b47e870cdd6b8fca2919cacda88679 Author: Robert Strandh Date: Wed Feb 9 12:46:23 2011 +0700 Fixed the heading comment. Added name-mixin to conditions. Moved condition reporters to a separate file. Moved package definition to a separate file. commit 3146c778c24141a364ddfe303b094c4f4148f94b Author: Robert Strandh Date: Wed Feb 9 12:45:19 2011 +0700 Added (empty for now) file for English language documentation strings. commit cf94e3c4ac8cea9046fe00756d93ba8530c63b95 Author: Robert Strandh Date: Wed Feb 9 12:44:18 2011 +0700 Broke out package definitions into a separate file. commit 1a400d555f32dd6dc57dcb91cea3b49c8eed5280 Author: Robert Strandh Date: Wed Feb 9 12:43:53 2011 +0700 Added description for the module. commit f477e892a9db0ad60d906eeb2bf86fcf1e453ef8 Author: Robert Strandh Date: Wed Feb 9 12:43:18 2011 +0700 Added ASDF system definition file. commit d32e4046ee240b72fde4dabeb3822c11c70bcf6d Author: Robert Strandh Date: Wed Feb 9 12:42:41 2011 +0700 Broke out English-language condition reporters into a separate file. ----------------------------------------------------------------------- Summary of changes: Code/Conditionals/condition-reporters-en.lisp | 151 ++++++++++++ .../conditionals.asd} | 20 +- Code/Conditionals/conditionals.lisp | 259 +++++++------------- Code/Conditionals/conditionals.text | 41 +++ Code/Conditionals/docstrings-en.lisp | 17 ++ Code/{Reader => Conditionals}/packages.lisp | 42 ++-- 6 files changed, 332 insertions(+), 198 deletions(-) create mode 100644 Code/Conditionals/condition-reporters-en.lisp copy Code/{Cons-high/cons-high.asd => Conditionals/conditionals.asd} (58%) create mode 100644 Code/Conditionals/conditionals.text create mode 100644 Code/Conditionals/docstrings-en.lisp copy Code/{Reader => Conditionals}/packages.lisp (52%) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sat Feb 12 02:05:03 2011 From: rstrandh at common-lisp.net (Robert Strandh) Date: Fri, 11 Feb 2011 21:05:03 -0500 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. d67d011bf70824058fd4886825c7f46de6f88f08 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SICL, bricks for implementors of Common Lisp systems. ". The branch, master has been updated via d67d011bf70824058fd4886825c7f46de6f88f08 (commit) from 6aeca0f8d3b47e870cdd6b8fca2919cacda88679 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d67d011bf70824058fd4886825c7f46de6f88f08 Author: Robert Strandh Date: Sat Feb 12 08:56:28 2011 +0700 Tests for the cond macro. ----------------------------------------------------------------------- Summary of changes: Code/Conditionals/test.lisp | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) create mode 100644 Code/Conditionals/test.lisp hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Feb 13 03:35:13 2011 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sat, 12 Feb 2011 22:35:13 -0500 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 15f12a0fcf1cd1be96abec75e7d43fd8dc90d326 Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SICL, bricks for implementors of Common Lisp systems. ". The branch, master has been updated via 15f12a0fcf1cd1be96abec75e7d43fd8dc90d326 (commit) via d33082677b49e4ef29988a39abf4fd6be1474a14 (commit) from d67d011bf70824058fd4886825c7f46de6f88f08 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 15f12a0fcf1cd1be96abec75e7d43fd8dc90d326 Author: Robert Strandh Date: Sun Feb 13 10:26:23 2011 +0700 Changed the implementation of the `and' and `or' macros so that it checks eagarly for an improper list of forms. commit d33082677b49e4ef29988a39abf4fd6be1474a14 Author: Robert Strandh Date: Sun Feb 13 10:24:43 2011 +0700 More tests for the cond macro. Tests for the or macro. Tests for the and macro. ----------------------------------------------------------------------- Summary of changes: Code/Conditionals/conditionals.lisp | 38 +++++++++++--------- Code/Conditionals/test.lisp | 67 +++++++++++++++++++++++++++++++++- 2 files changed, 86 insertions(+), 19 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Feb 13 04:09:30 2011 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sat, 12 Feb 2011 23:09:30 -0500 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 77e852ff0974d8f8048c9ad174774463aeed8a2f Message-ID: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SICL, bricks for implementors of Common Lisp systems. ". The branch, master has been updated via 77e852ff0974d8f8048c9ad174774463aeed8a2f (commit) from 15f12a0fcf1cd1be96abec75e7d43fd8dc90d326 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 77e852ff0974d8f8048c9ad174774463aeed8a2f Author: Robert Strandh Date: Sun Feb 13 11:01:15 2011 +0700 More tests for the `and' and `or' macros. ----------------------------------------------------------------------- Summary of changes: Code/Conditionals/test.lisp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems.