~ chicken-core (chicken-5) d707a5a96431c1590b08f3699184479174330193
commit d707a5a96431c1590b08f3699184479174330193 Author: Peter Bex <peter.bex@xs4all.nl> AuthorDate: Sat Nov 3 16:43:10 2012 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Tue Nov 6 21:07:24 2012 +0100 Process-fork's type has changed in 47b5be71; the procedure can be #f now too. Update types.db to match Signed-off-by: felix <felix@call-with-current-continuation.org> diff --git a/types.db b/types.db index 2e6e45df..da45786e 100644 --- a/types.db +++ b/types.db @@ -1726,7 +1726,7 @@ (process-execute (#(procedure #:clean #:enforce) process-execute (string #!optional (list-of string) (list-of string)) noreturn)) -(process-fork (#(procedure #:enforce) process-fork (#!optional (procedure () . *) *) fixnum)) +(process-fork (#(procedure #:enforce) process-fork (#!optional (or (procedure () . *) boolean) *) fixnum)) (process-group-id (#(procedure #:clean #:enforce) process-group-id () fixnum)) (process-run (#(procedure #:clean #:enforce) process-run (string #!optional (list-of string)) fixnum))Trap