mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
[ruby/irb] Stop using MagicFile for printing help messages
(https://github.com/ruby/irb/pull/573)
`MagicFile` was introduced around v0.9.6, which was like 14~15 years ago.
It was needed because back then we needed to read a file's magic comment
to determine the encoding of it, and read it with that encoding.
Commit: 3ee79e89ad
But now both EN and JA's help-message file are UTF-8 and have removed the
encoding comment, we don't need to open them with `MagicFile` anymore.
This commit is contained in:
parent
c7bacf84f0
commit
a58cae77f7
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module IRB
|
|||
lc = IRB.conf[:LC_MESSAGES]
|
||||
path = lc.find("irb/help-message")
|
||||
space_line = false
|
||||
IRB::MagicFile.open(path){|f|
|
||||
File.open(path){|f|
|
||||
f.each_line do |l|
|
||||
if /^\s*$/ =~ l
|
||||
lc.puts l unless space_line
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue