File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,11 @@ def filename_quote_characters=(v)
114
114
end
115
115
116
116
def special_prefixes = ( v )
117
- @special_prefixes = v . encode ( encoding )
117
+ if v . nil?
118
+ @special_prefixes = ''
119
+ else
120
+ @special_prefixes = v . encode ( encoding )
121
+ end
118
122
end
119
123
120
124
def completion_case_fold = ( v )
@@ -174,14 +178,25 @@ def dialog_proc(name_sym)
174
178
end
175
179
176
180
def input = ( val )
177
- raise TypeError unless val . respond_to? ( :getc ) or val . nil?
178
- if val . respond_to? ( :getc ) && io_gate . respond_to? ( :input= )
179
- io_gate . input = val
181
+ if val . nil?
182
+ io_gate . input = STDIN
183
+ return
184
+ elsif !val . respond_to? ( :getc )
185
+ raise TypeError
180
186
end
187
+
188
+ io_gate . input = val
181
189
end
182
190
183
191
def output = ( val )
184
- raise TypeError unless val . respond_to? ( :write ) or val . nil?
192
+ if val . nil?
193
+ @output = STDOUT
194
+ io_gate . output = STDOUT
195
+ return
196
+ elsif !val . respond_to? ( :write )
197
+ raise TypeError
198
+ end
199
+
185
200
@output = val
186
201
io_gate . output = val
187
202
end
You can’t perform that action at this time.
0 commit comments