Differences From Artifact [de57287845]:
- File margs-inc.scm — part of check-in [93858377ad] at 2019-11-03 14:26:58 on branch v1.65-try3 — wip (user: matt, size: 2844) [annotate] [blame] [check-ins using]
To Artifact [0e96276687]:
- File margs-inc.scm — part of check-in [cfaa83fc70] at 2019-11-03 19:06:55 on branch v1.65-try3 — wip (user: matt, size: 2846) [annotate] [blame] [check-ins using] [more...]
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + | (map args:get-arg args))))) (define (args:get-arg-from ht arg . default) (if (null? default) (hash-table-ref/default ht arg #f) (hash-table-ref/default ht arg (car default)))) |
︙ |