Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fc0289b

Browse files
committedJan 15, 2025·
Set default value for Reline.input, Reline.output and Reline.special_prefixes
1 parent 24e6128 commit fc0289b

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed
 

‎lib/reline.rb

+20-5
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,11 @@ def filename_quote_characters=(v)
114114
end
115115

116116
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
118122
end
119123

120124
def completion_case_fold=(v)
@@ -174,14 +178,25 @@ def dialog_proc(name_sym)
174178
end
175179

176180
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
180186
end
187+
188+
io_gate.input = val
181189
end
182190

183191
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+
185200
@output = val
186201
io_gate.output = val
187202
end

0 commit comments

Comments
 (0)
Please sign in to comment.