Overview
Comment: | couple files to help recreate the eval problem |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | move-to-ck4.7.x |
Files: | files | file ages | folders |
SHA1: |
2be28d85adccb41f4f1ccc6df73b3329 |
User & Date: | matt on 2011-10-04 02:58:10 |
Other Links: | branch diff | manifest | tags |
Context
2011-10-04
| ||
03:39 | Moved to units based compilation check-in: 31955e0a02 user: matt tags: move-to-ck4.7.x | |
02:58 | couple files to help recreate the eval problem check-in: 2be28d85ad user: matt tags: move-to-ck4.7.x | |
02:56 | Minor porting and debugging tweaks check-in: 471f3f9325 user: matt tags: move-to-ck4.7.x | |
Changes
Modified stml.scm from [790f2122c1] to [73ed44f16b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + + + | ;; Copyright 2007-2008, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. ;; stml is a list of html strings (declare (unit stml)) (include "misc-stml") ;; extract various tokens from the parameter list ;; 'key val => put in the params list ;; strings => maintain order and add to the datalist <<== IMPORTANT (define (s:extract inlst) (if (null? inlst) inlst (let loop ((data '()) |
︙ |
Added test.scm version [62a996e095].
|
Added test.stml version [0f6611f558].
|