Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
abcl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abcl
abcl
Commits
62f94bc8
Commit
62f94bc8
authored
Nov 25, 2019
by
Mark Evenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
untabify source unit
parent
3c55f869
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
src/org/armedbear/lisp/Stream.java
src/org/armedbear/lisp/Stream.java
+10
-10
No files found.
src/org/armedbear/lisp/Stream.java
View file @
62f94bc8
...
...
@@ -515,7 +515,7 @@ public class Stream extends StructureObject {
return
error
(
new
StreamError
(
this
,
e
));
}
}
if
(!
eofError
&&
result
==
eofValue
)
return
result
;
if
(!
eofError
&&
result
==
eofValue
)
return
result
;
if
(
Symbol
.
READ_SUPPRESS
.
symbolValue
(
thread
)
!=
NIL
)
return
NIL
;
else
...
...
@@ -856,7 +856,7 @@ public class Stream extends StructureObject {
StringBuilder
sb
=
new
StringBuilder
();
try
{
while
(
true
)
{
while
(
true
)
{
int
ch
=
_readChar
();
if
(
ch
<
0
)
break
;
...
...
@@ -877,13 +877,13 @@ public class Stream extends StructureObject {
this
));
}
}
}
}
}
catch
(
java
.
io
.
IOException
e
)
{
error
(
new
ReaderError
(
"IO error: "
,
this
));
return
NIL
;
error
(
new
ReaderError
(
"IO error: "
,
this
));
return
NIL
;
}
if
(
suppress
)
...
...
@@ -2667,19 +2667,19 @@ public class Stream extends StructureObject {
};
public
InputStream
getWrappedInputStream
()
{
return
in
;
return
in
;
}
public
OutputStream
getWrappedOutputStream
()
{
return
out
;
return
out
;
}
public
Writer
getWrappedWriter
()
{
return
writer
;
return
writer
;
}
public
PushbackReader
getWrappedReader
()
{
return
reader
;
return
reader
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment