projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d9e47d
)
Fix typo in READ-QUOTED-TO-PORT: READ-CHAR-NO-EOF wants an input port,
author
Taylor R. Campbell
<net/mumble/campbell>
Sun, 18 May 2008 22:46:36 +0000
(22:46 +0000)
committer
Taylor R. Campbell
<net/mumble/campbell>
Sun, 18 May 2008 22:46:36 +0000
(22:46 +0000)
not a character.
v7/src/imail/imap-response.scm
patch
|
blob
|
history
diff --git
a/v7/src/imail/imap-response.scm
b/v7/src/imail/imap-response.scm
index 65a45f91334651816b54c05df3c89e1eb083aee2..a34b8c4f7b2aed674480016cbd95c230e502140f 100644
(file)
--- a/
v7/src/imail/imap-response.scm
+++ b/
v7/src/imail/imap-response.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: imap-response.scm,v 1.5
3 2008/01/30 20:02:10 cp
h Exp $
+$Id: imap-response.scm,v 1.5
4 2008/05/18 22:46:36 riastrad
h Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@
-302,7
+302,7
@@
USA.
(write-char char output)
(loop))
((char=? #\\ char)
- (let ((char (read-char-no-eof
char
)))
+ (let ((char (read-char-no-eof
input
)))
(if (imap:quoted-special? char)
(begin
(write-char char output)