summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/io.c b/io.c
index a52cea488b..751a5ef393 100644
--- a/io.c
+++ b/io.c
@@ -442,11 +442,9 @@ io_gets_method(argc, argv, io)
c = cnt ? 0 : EOF;
}
- if (c == EOF) {
- if (!append && cnt == 0) {
- str = Qnil;
- goto return_gets;
- }
+ if (c == EOF && !append && cnt == 0) {
+ str = Qnil;
+ goto return_gets;
}
if (append)
@@ -517,11 +515,9 @@ io_gets(io)
}
cnt = bp - buf;
- if (c == EOF) {
- if (!append && cnt == 0) {
- str = Qnil;
- goto return_gets;
- }
+ if (c == EOF && !append && cnt == 0) {
+ str = Qnil;
+ goto return_gets;
}
if (append)