Fixed Warning output in parallel scribble build
This commit is contained in:
parent
6fe8643194
commit
aa42f4a582
|
@ -137,7 +137,7 @@
|
||||||
(lambda (workerid) (list workerid program-name (verbose) only-dirs latex-dest auto-main? auto-user?))
|
(lambda (workerid) (list workerid program-name (verbose) only-dirs latex-dest auto-main? auto-user?))
|
||||||
docs
|
docs
|
||||||
(lambda (x) (s-exp->fasl (serialize x)))
|
(lambda (x) (s-exp->fasl (serialize x)))
|
||||||
(lambda (work r outstr errstr) (printf "~a" outstr) (deserialize (fasl->s-exp r)))
|
(lambda (work r outstr errstr) (printf "~a" outstr) (printf "~a" errstr) (deserialize (fasl->s-exp r)))
|
||||||
(lambda (work errmsg outstr errstr) (parallel-do-default-error-handler work errmsg outstr errstr) #f)
|
(lambda (work errmsg outstr errstr) (parallel-do-default-error-handler work errmsg outstr errstr) #f)
|
||||||
(define-worker (get-doc-info-worker workerid program-name verbosev only-dirs latex-dest auto-main? auto-user?)
|
(define-worker (get-doc-info-worker workerid program-name verbosev only-dirs latex-dest auto-main? auto-user?)
|
||||||
(define ((get-doc-info-local program-name only-dirs latex-dest auto-main? auto-user?) doc)
|
(define ((get-doc-info-local program-name only-dirs latex-dest auto-main? auto-user?) doc)
|
||||||
|
@ -321,8 +321,8 @@
|
||||||
(say-rendering i)
|
(say-rendering i)
|
||||||
(s-exp->fasl (serialize (info-doc i))))
|
(s-exp->fasl (serialize (info-doc i))))
|
||||||
(lambda (i r outstr errstr)
|
(lambda (i r outstr errstr)
|
||||||
#;(printf "~a" outstr)
|
(printf "~a" outstr)
|
||||||
#;(printf "~a" errstr)
|
(printf "~a" errstr)
|
||||||
(update-info i (deserialize (fasl->s-exp r))))
|
(update-info i (deserialize (fasl->s-exp r))))
|
||||||
(lambda (i errmsg outstr errstr) (parallel-do-default-error-handler i errmsg outstr errstr) #f)
|
(lambda (i errmsg outstr errstr) (parallel-do-default-error-handler i errmsg outstr errstr) #f)
|
||||||
(define-worker (build-again!-worker2 workerid verbosev latex-dest)
|
(define-worker (build-again!-worker2 workerid verbosev latex-dest)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user