Differences From Artifact [f9dfbe5500]:
- File attic/process.scm — part of check-in [101ee7c52b] at 2021-03-06 04:39:46 on branch v1.65-real-chicken-5 — Try a grounds-up switch to chicken-5 (user: matt, size: 7835) [annotate] [blame] [check-ins using]
- File process.scm — part of check-in [1cf9221da5] at 2020-08-24 06:54:26 on branch v1.65-cleanup — filled out more exception handlers. ==/3.73/1.3/PASS/1203/orion/== (user: mrwellan, size: 7835) [annotate] [blame] [check-ins using]
To Artifact [ebe55b45e0]:
- File process.scm — part of check-in [5746a55322] at 2021-02-04 21:17:51 on branch v1.6569-multi-db — Few more spots where loading of commonmod was needed (user: matt, size: 7882) [annotate] [blame] [check-ins using]
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + + + | ;;====================================================================== ;; Process convience utils ;;====================================================================== (use regex directory-utils) (declare (unit process)) (declare (uses commonmod)) (import commonmod) (define (process:conservative-read port) (let loop ((res "")) (if (not (eof-object? (peek-char port))) (loop (conc res (read-char port))) res))) |
︙ |