Skip to content

Commit 9cec38c

Browse files
committed
"binary" is not valid encoding name in Emacs
1 parent a0fe009 commit 9cec38c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+81
-81
lines changed

spec/ruby/core/array/pack/a_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44
require_relative 'shared/basic'

spec/ruby/core/array/pack/at_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44
require_relative 'shared/basic'

spec/ruby/core/array/pack/b_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44
require_relative 'shared/basic'

spec/ruby/core/array/pack/c_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22

33
require_relative '../../../spec_helper'
44
require_relative '../fixtures/classes'

spec/ruby/core/array/pack/comment_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44

spec/ruby/core/array/pack/h_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44
require_relative 'shared/basic'

spec/ruby/core/array/pack/m_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
require_relative '../../../spec_helper'
33
require_relative '../fixtures/classes'
44
require_relative 'shared/basic'

spec/ruby/core/array/pack/shared/float.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22

33
describe :array_pack_float_le, shared: true do
44
it "encodes a positive Float" do

spec/ruby/core/array/pack/shared/integer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22

33
describe :array_pack_16bit_le, shared: true do
44
it "encodes the least significant 16 bits of a positive number" do

spec/ruby/core/array/pack/shared/string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- encoding: binary -*-
1+
# encoding: binary
22
describe :array_pack_string, shared: true do
33
it "adds count bytes of a String to the output" do
44
["abc"].pack(pack_format(2)).should == "ab"

0 commit comments

Comments
 (0)