scsh-users
[Top] [All Lists]

scsh 0.5.2 typo in procobj.scm

To: scsh-bugs@zurich.ai.mit.edu
Subject: scsh 0.5.2 typo in procobj.scm
From: Gary Houston <ghouston@arglist.com>
Date: 20 Aug 2000 22:11:57 -0000
The last line of procobj.scm/filter-weak-ptr-list seems incorrect.
It was OK in 0.5.1:

(define (filter-weak-ptr-list pred lis)
  (fold-right (lambda (wptr result) (let ((val (weak-pointer-ref wptr)))
                                      (if (and val (pred val))
                                          (cons wptr result)
                                          result)))
              '()
              list))

<Prev in Thread] Current Thread [Next in Thread>
  • scsh 0.5.2 typo in procobj.scm, Gary Houston <=