fixed typo

This commit is contained in:
mainzelm 2001-01-01 16:49:34 +00:00
parent d75baf1985
commit d69728b899
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
(define (status:term-sig status)
(let ((termsig (bitwise-and status #x7F)))
(and (not (zero? termsig)) ; Didn't exit.
(not (= #x7F)) ; Not suspended.
(not (= termsig #x7F)) ; Not suspended.
termsig)))