]> git.mdlowis.com Git - archive/dlang-scm.git/commitdiff
Removed unused file
authorMike D. Lowis <mike@mdlowis.com>
Fri, 21 Sep 2012 20:43:12 +0000 (16:43 -0400)
committerMike D. Lowis <mike@mdlowis.com>
Fri, 21 Sep 2012 20:43:12 +0000 (16:43 -0400)
source/charport.scm [deleted file]

diff --git a/source/charport.scm b/source/charport.scm
deleted file mode 100644 (file)
index fc4c975..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-(declare (unit charport))
-;(define (charport-read chprt)
-;  (define ch (read-char (charport-port chprt)))
-;  (cond
-;    ((eof-object? ch)) ; Do nothing for EOFs
-;    ((char=? ch #\newline)
-;      (charport-line-set! chprt (+ 1 (charport-line chprt)))
-;      (charport-column-set! chprt 1))
-;    (else
-;      (charport-column-set! chprt (+ 1 (charport-column chprt)))))
-;  (charobj ch (charport-posdata chprt))
-;
-;(define (charport-posdata chprt)
-;  (posdata
-;    (port-name (charport-port chprt))
-;    (charport-line chprt)
-;    (charport-column chprt)))
-
-