From rstrandh at common-lisp.net Mon Jul 5 05:03:05 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Mon, 05 Jul 2010 01:03:05 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 42b12892efce93ca4cda02ec7e9505604b3985d5 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 42b12892efce93ca4cda02ec7e9505604b3985d5 (commit) from 8195fffdc7c8a199ea0117c29d4bb3aacc48bd5c (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 42b12892efce93ca4cda02ec7e9505604b3985d5 Author: Robert Strandh Date: Mon Jul 5 07:02:48 2010 +0200 Implemented the ldiff function. Added tests for the ldiff function. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 20 +++++++++++++++++++- Code/Cons-high/status.text | 3 ++- Code/Cons-high/test.lisp | 28 ++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 2 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Fri Jul 9 14:50:45 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Fri, 09 Jul 2010 10:50:45 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. a85cee4fe8db276c95686b2025e3dbadc57a4035 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 a85cee4fe8db276c95686b2025e3dbadc57a4035 (commit) from 42b12892efce93ca4cda02ec7e9505604b3985d5 (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 a85cee4fe8db276c95686b2025e3dbadc57a4035 Author: Robert Strandh Date: Fri Jul 9 16:50:42 2010 +0200 Implemented function intersection. No tests yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 168 ++++++++++++++++++++++++++++++++++++++++- Code/Cons-high/status.text | 3 +- 2 files changed, 167 insertions(+), 4 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sat Jul 10 07:01:32 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sat, 10 Jul 2010 03:01:32 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 5653d4497358444e0b4bec659a1b03953227ced4 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 5653d4497358444e0b4bec659a1b03953227ced4 (commit) from a85cee4fe8db276c95686b2025e3dbadc57a4035 (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 5653d4497358444e0b4bec659a1b03953227ced4 Author: Robert Strandh Date: Sat Jul 10 09:00:02 2010 +0200 Added tests for intersection. Added tests for union and intersection that use the :key keyword argument in order to demonstrate failure in that case. Fixed the code for union and intersection so that the tests pass. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 16 +++++----- Code/Cons-high/status.text | 2 +- Code/Cons-high/test.lisp | 68 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+), 9 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 05:04:44 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 01:04:44 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. e7fab619789879eeb8542ddf79933eb6fb2047c3 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 e7fab619789879eeb8542ddf79933eb6fb2047c3 (commit) from 5653d4497358444e0b4bec659a1b03953227ced4 (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 e7fab619789879eeb8542ddf79933eb6fb2047c3 Author: Robert Strandh Date: Sun Jul 11 07:03:27 2010 +0200 Implemented nunion and nintersection as copies of union and intersection, which is allowed because the standard doesn't require nunion and nintersection to have any side effects. Added tests for nunion and nintersection. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 122 +++++++++++++++++++++++++++++++++++++++++ Code/Cons-high/packages.lisp | 2 +- Code/Cons-high/status.text | 7 +- Code/Cons-high/test.lisp | 114 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 241 insertions(+), 4 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 05:24:59 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 01:24:59 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 5ba972467cf6156ac6f628316cfd37045a3f0fcd 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 5ba972467cf6156ac6f628316cfd37045a3f0fcd (commit) from e7fab619789879eeb8542ddf79933eb6fb2047c3 (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 5ba972467cf6156ac6f628316cfd37045a3f0fcd Author: Robert Strandh Date: Sun Jul 11 07:24:16 2010 +0200 Implemented set-difference. No tests yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 223 +++++++++++++++++++++++++++++++++++++++++ Code/Cons-high/packages.lisp | 2 + Code/Cons-high/status.text | 6 +- 3 files changed, 229 insertions(+), 2 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 08:46:26 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 04:46:26 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 0117d9e85bcd973be95e08c5077c0c42e6bb349f 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 0117d9e85bcd973be95e08c5077c0c42e6bb349f (commit) from 5ba972467cf6156ac6f628316cfd37045a3f0fcd (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 0117d9e85bcd973be95e08c5077c0c42e6bb349f Author: Robert Strandh Date: Sun Jul 11 10:45:38 2010 +0200 Implemented set-exclusive-or and nset-exclusive-or. No tests yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 422 +++++++++++++++++++++++++++++++++++++--- Code/Cons-high/status.text | 5 +- 2 files changed, 393 insertions(+), 34 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 09:03:04 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 05:03:04 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. aca8cc22bd5369c6447cc94e978e441395f58102 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 aca8cc22bd5369c6447cc94e978e441395f58102 (commit) from 0117d9e85bcd973be95e08c5077c0c42e6bb349f (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 aca8cc22bd5369c6447cc94e978e441395f58102 Author: Robert Strandh Date: Sun Jul 11 11:02:37 2010 +0200 Implemented subsetp. No tests yet. Updated status.text to reflect the modification. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 146 +++++++++++++++++++++++++++++++++++++++++ Code/Cons-high/packages.lisp | 2 +- Code/Cons-high/status.text | 3 +- 3 files changed, 149 insertions(+), 2 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 10:17:26 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 06:17:26 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 4daf3257580465960534225a5d267d08017149c4 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 4daf3257580465960534225a5d267d08017149c4 (commit) from aca8cc22bd5369c6447cc94e978e441395f58102 (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 4daf3257580465960534225a5d267d08017149c4 Author: Robert Strandh Date: Sun Jul 11 12:16:04 2010 +0200 Implemented functions getf and get-properties. No tests yet. Updated status.text to reflect the changes. Also updated status.text to include more things that remain to do, namely setf expanders and macros that belong in the consed dictionary. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 28 ++++++++++++++++++++++++++++ Code/Cons-high/packages.lisp | 3 ++- Code/Cons-high/status.text | 15 ++++++++++++--- 3 files changed, 42 insertions(+), 4 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 12:02:01 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 08:02:01 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. b12bf982dc61a7366a92a7dc4de30021508423de 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 b12bf982dc61a7366a92a7dc4de30021508423de (commit) from 4daf3257580465960534225a5d267d08017149c4 (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 b12bf982dc61a7366a92a7dc4de30021508423de Author: Robert Strandh Date: Sun Jul 11 14:01:20 2010 +0200 Implemented the push and pop macros. No tests yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 32 ++++++++++++++++++++++++++++++++ Code/Cons-high/packages.lisp | 3 ++- Code/Cons-high/status.text | 6 ++++-- 3 files changed, 38 insertions(+), 3 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 12:08:31 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 08:08:31 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 290870874cbb42b1a68012457cd80fbe0f1832bb 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 290870874cbb42b1a68012457cd80fbe0f1832bb (commit) from b12bf982dc61a7366a92a7dc4de30021508423de (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 290870874cbb42b1a68012457cd80fbe0f1832bb Author: Robert Strandh Date: Sun Jul 11 14:07:33 2010 +0200 Moved setf expander for rest to the cons-high module. Removed setf expander for nth and replaced it with a (setf nth) function in the cons-high module. ----------------------------------------------------------------------- Summary of changes: Code/Setf-expanders/setf-expanders.lisp | 23 ----------------------- 1 files changed, 0 insertions(+), 23 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Sun Jul 11 12:10:12 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Sun, 11 Jul 2010 08:10:12 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. c0aeb915bd1b15c981c5543dd2bf5b44b2f2efa2 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 c0aeb915bd1b15c981c5543dd2bf5b44b2f2efa2 (commit) from 290870874cbb42b1a68012457cd80fbe0f1832bb (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 c0aeb915bd1b15c981c5543dd2bf5b44b2f2efa2 Author: Robert Strandh Date: Sun Jul 11 14:09:19 2010 +0200 Moved setf expander of rest from the setf-expanders module to here. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 13 +++++++++++++ Code/Cons-high/status.text | 6 ++++-- 2 files changed, 17 insertions(+), 2 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 14 14:29:49 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 14 Jul 2010 10:29:49 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 0bb8a82273dd81b0545313d7fbb34770869f4fd0 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 0bb8a82273dd81b0545313d7fbb34770869f4fd0 (commit) from c0aeb915bd1b15c981c5543dd2bf5b44b2f2efa2 (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 0bb8a82273dd81b0545313d7fbb34770869f4fd0 Author: Robert Strandh Date: Wed Jul 14 16:29:05 2010 +0200 Implemented the remf macro. No tests yet. Implemented the setf expander for getf. No tests yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 86 +++++++++++++++++++++++++++++++++------- Code/Cons-high/packages.lisp | 3 +- Code/Cons-high/status.text | 6 ++- 3 files changed, 77 insertions(+), 18 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 14 15:11:54 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 14 Jul 2010 11:11:54 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 28191c95f976c51bbe9fdbd8874de3abde5adc19 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 28191c95f976c51bbe9fdbd8874de3abde5adc19 (commit) from 0bb8a82273dd81b0545313d7fbb34770869f4fd0 (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 28191c95f976c51bbe9fdbd8874de3abde5adc19 Author: Robert Strandh Date: Wed Jul 14 17:11:24 2010 +0200 Implemented macro pushnew. No test yet. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 74 ++++++++++++++++++++++++++++++++++++++++- Code/Cons-high/status.text | 6 +-- 2 files changed, 75 insertions(+), 5 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Thu Jul 15 05:24:31 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Thu, 15 Jul 2010 01:24:31 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. ab7a45f2560952dc04ecb3fd1d8d4d3e45906aab 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 ab7a45f2560952dc04ecb3fd1d8d4d3e45906aab (commit) from 28191c95f976c51bbe9fdbd8874de3abde5adc19 (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 ab7a45f2560952dc04ecb3fd1d8d4d3e45906aab Author: Robert Strandh Date: Thu Jul 15 07:23:38 2010 +0200 Fixed compiler macros for maplist and mapl so that the generated code conforms to the specification of the loop macro. Thanks to _3b. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 35 ++++++++++++++++++++--------------- 1 files changed, 20 insertions(+), 15 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Thu Jul 15 11:35:45 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Thu, 15 Jul 2010 07:35:45 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. e19a2f7b808525a2caefa3688de1e9f44bc10200 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 e19a2f7b808525a2caefa3688de1e9f44bc10200 (commit) from ab7a45f2560952dc04ecb3fd1d8d4d3e45906aab (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 e19a2f7b808525a2caefa3688de1e9f44bc10200 Author: Robert Strandh Date: Thu Jul 15 13:35:35 2010 +0200 Fixed a bug in nconc. Now it works for dotted lists as well. Thanks to _3b on #lisp. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 9 +++++---- Code/Cons-high/test.lisp | 18 ++++++++++-------- 2 files changed, 15 insertions(+), 12 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Thu Jul 15 12:41:54 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Thu, 15 Jul 2010 08:41:54 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 967ec30d0056885d931e74ee7685189c6448b0d5 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 967ec30d0056885d931e74ee7685189c6448b0d5 (commit) from e19a2f7b808525a2caefa3688de1e9f44bc10200 (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 967ec30d0056885d931e74ee7685189c6448b0d5 Author: Robert Strandh Date: Thu Jul 15 14:41:08 2010 +0200 Fixed a problem in sublis and nsublis with the :key argument. The key was applied to the association list key instead of to the tree. Thanks to _3b on #lisp for spotting this problem. Added a few tests for sublis and nsublis that demonstrated the problem. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 70 +++++++++++++++++++++++++++-------------- Code/Cons-high/status.text | 4 +- Code/Cons-high/test.lisp | 30 +++++++++++++++++ 3 files changed, 78 insertions(+), 26 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Fri Jul 16 04:49:18 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Fri, 16 Jul 2010 00:49:18 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 72e37ccf29cf7a3fb67d63ea1dc98a3864cc189d 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 72e37ccf29cf7a3fb67d63ea1dc98a3864cc189d (commit) from 967ec30d0056885d931e74ee7685189c6448b0d5 (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 72e37ccf29cf7a3fb67d63ea1dc98a3864cc189d Author: Robert Strandh Date: Fri Jul 16 06:47:56 2010 +0200 The integers in a CASE don't have to be small. Thanks to Pascal Bourguignon for spotting this. ----------------------------------------------------------------------- Summary of changes: Specification/sicl.tex | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 06:05:14 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 02:05:14 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 7ec910d5ceb2203d15e5e3424723d9dbb0e4f6ba 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 7ec910d5ceb2203d15e5e3424723d9dbb0e4f6ba (commit) from 72e37ccf29cf7a3fb67d63ea1dc98a3864cc189d (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 7ec910d5ceb2203d15e5e3424723d9dbb0e4f6ba Author: Robert Strandh Date: Wed Jul 21 08:04:22 2010 +0200 Included several tests to demonstrate a bug in the pushnew macro. Fixed the bug in pushnew so that the tests pass. Updated status.text to reflect the changes. Thanks to _3b on #lisp for spotting this problem. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 11 +- Code/Cons-high/status.text | 4 +- Code/Cons-high/test.lisp | 257 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 266 insertions(+), 6 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 06:24:47 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 02:24:47 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 1dbfe7ede4d54b156e6a12da317bda69edd2654f 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 1dbfe7ede4d54b156e6a12da317bda69edd2654f (commit) from 7ec910d5ceb2203d15e5e3424723d9dbb0e4f6ba (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 1dbfe7ede4d54b156e6a12da317bda69edd2654f Author: Robert Strandh Date: Wed Jul 21 08:24:16 2010 +0200 Included tests for the pop macro that demonstrated a bug. Fixed the bug in the pop macro. Updated status.text to reflect the changes. Thanks to _3b on #lisp for spotting this problem. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 4 ++-- Code/Cons-high/status.text | 2 +- Code/Cons-high/test.lisp | 31 +++++++++++++++++++++++++++++++ 3 files changed, 34 insertions(+), 3 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 06:33:36 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 02:33:36 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 9690f97f946092aaf65a702745dbd949192f0286 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 9690f97f946092aaf65a702745dbd949192f0286 (commit) from 1dbfe7ede4d54b156e6a12da317bda69edd2654f (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 9690f97f946092aaf65a702745dbd949192f0286 Author: Robert Strandh Date: Wed Jul 21 08:33:33 2010 +0200 Fixed a problem with ignored arguments in the pushnew macro. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 06:51:36 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 02:51:36 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 57bd7c481496e082326b5b38b23abaca117c0c07 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 57bd7c481496e082326b5b38b23abaca117c0c07 (commit) from 9690f97f946092aaf65a702745dbd949192f0286 (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 57bd7c481496e082326b5b38b23abaca117c0c07 Author: Robert Strandh Date: Wed Jul 21 08:51:10 2010 +0200 Included a test for sublis that demonstrates failure in case no substitutions are made. Fixed the problem in sublis. Thanks to _3b on #lisp for spotting this problem. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 244 ++++++++++++++++++++++++---------------- Code/Cons-high/test.lisp | 6 + 2 files changed, 152 insertions(+), 98 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 07:02:13 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 03:02:13 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 78c8178f6dba6abed0e7c00129c445f698ae06b1 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 78c8178f6dba6abed0e7c00129c445f698ae06b1 (commit) from 57bd7c481496e082326b5b38b23abaca117c0c07 (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 78c8178f6dba6abed0e7c00129c445f698ae06b1 Author: Robert Strandh Date: Wed Jul 21 09:01:47 2010 +0200 Included tests for subst and nsubst that demonstrate a problem when :test-not is given. Fixed the problem in subst and nsubst. Updated status.text to reflect the changes. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 8 ++++---- Code/Cons-high/status.text | 4 ++-- Code/Cons-high/test.lisp | 17 +++++++++++++++++ 3 files changed, 23 insertions(+), 6 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Wed Jul 21 07:30:35 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Wed, 21 Jul 2010 03:30:35 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. 8b3a67accb033589cfdc85b6c9497f0658c5b98c 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 8b3a67accb033589cfdc85b6c9497f0658c5b98c (commit) from 78c8178f6dba6abed0e7c00129c445f698ae06b1 (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 8b3a67accb033589cfdc85b6c9497f0658c5b98c Author: Robert Strandh Date: Wed Jul 21 09:29:56 2010 +0200 Included a test that demonstrate a problem with the remf macro. Fixed the problem demonstrated by the test. Included some tests for the getf function. Updated status.text to reflect the changes. Thanks to _3b on #lisp for spotting the problem. ----------------------------------------------------------------------- Summary of changes: Code/Cons-high/cons-high.lisp | 28 ++++++++++++++-------------- Code/Cons-high/status.text | 4 ++-- Code/Cons-high/test.lisp | 30 ++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 16 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems. From rstrandh at common-lisp.net Tue Jul 27 06:12:50 2010 From: rstrandh at common-lisp.net (Robert Strandh) Date: Tue, 27 Jul 2010 02:12:50 -0400 Subject: [sicl-cvs] GIT update: SICL, bricks for implementors of Common Lisp systems. branch, master, updated. ba00fb210c0f893d8f70fd2ba8743e8c5eda640b 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 ba00fb210c0f893d8f70fd2ba8743e8c5eda640b (commit) from 8b3a67accb033589cfdc85b6c9497f0658c5b98c (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 ba00fb210c0f893d8f70fd2ba8743e8c5eda640b Author: Robert Strandh Date: Tue Jul 27 08:11:51 2010 +0200 Added documentation strings for some functions in the conses dictionary: atom, cons, consp, copy-tree, rplaca, rplacd, sublis. ----------------------------------------------------------------------- Summary of changes: Code/Docstrings/docstrings-en.lisp | 56 +++++++++++++++++++++++++++++++++++- 1 files changed, 55 insertions(+), 1 deletions(-) hooks/post-receive -- SICL, bricks for implementors of Common Lisp systems.