SPLIT-LIST now implemented in "utils.scm".
authorChris Hanson <org/chris-hanson/cph>
Fri, 5 Nov 1999 05:38:15 +0000 (05:38 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 5 Nov 1999 05:38:15 +0000 (05:38 +0000)
v7/src/edwin/snr.scm

index 9dd88d253b1fc8cadcdb874c5c812bbffe213946..dd7fe4710a2c746168317d2b961b3cfcf12ae7e4 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: snr.scm,v 1.52 1999/08/20 20:35:53 cph Exp $
+;;; $Id: snr.scm,v 1.53 1999/11/05 05:38:15 cph Exp $
 ;;;
 ;;; Copyright (c) 1995-1999 Massachusetts Institute of Technology
 ;;;
@@ -3678,15 +3678,6 @@ With prefix arg, replaces the file with the list information."
                  (lambda () 'LESS)
                  (lambda () 'GREATER)))
 
-(define (split-list headers predicate)
-  (let loop ((headers headers) (satisfied '()) (unsatisfied '()))
-    (cond ((null? headers)
-          (values satisfied unsatisfied))
-         ((predicate (car headers))
-          (loop (cdr headers) (cons (car headers) satisfied) unsatisfied))
-         (else
-          (loop (cdr headers) satisfied (cons (car headers) unsatisfied))))))
-
 (define (prefix-matcher prefix)
   (let ((plen (string-length prefix)))
     (lambda (x y)