original commit: 2ce1a0ca3b39226e74388b36e3e20e14b5bb7d30
This commit is contained in:
Matthew Flatt 2003-04-21 13:26:48 +00:00
parent ee31a373b7
commit 80e3f7d7d7

View File

@ -2058,7 +2058,7 @@
(define/public (delete i)
(as-entry
(lambda ()
(set! tabs (let loop ([pos 0][l tabs])
(set! tabs (let loop ([pos 0][tabs tabs])
(if (= i pos)
(cdr tabs)
(cons (car tabs) (loop (add1 pos) (cdr tabs))))))