Project

General

Profile

Actions

Bug #562

closed

String#encode Behaving Like String#encode!

Added by JEG2 (James Gray) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
Backport:
[ruby-core:18578]

Description

=begin
String#encode is changing the original String in the version of Ruby I built yesterday:

$ cat bug.rb
#!/usr/bin/env ruby -w

encoding: UTF-8

a = "James"
b = a.encode("SJIS")
p a.encoding
p b.encoding
$ ruby_dev bug.rb
#Encoding:Shift_JIS
#Encoding:Shift_JIS

James Edward Gray II
=end

Actions #1

Updated by nobu (Nobuyoshi Nakada) over 15 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

=begin
Applied in changeset r19349.
=end

Actions

Also available in: Atom PDF

Like0
Like0