From 0ca6b973e89889f1ce0dbbc05da780cb75776bfe Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 10 Aug 2020 19:45:17 +0900 Subject: Removed non-ASCII code to suppress warnings by localized compilers --- string.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index c8deba7234..d4ec257e87 100644 --- a/string.c +++ b/string.c @@ -1585,8 +1585,8 @@ rb_str_resurrect(VALUE str) * * With the single argument +str+, returns a copy of +str+ * with the same encoding as +str+: - * s = String.new('Que veut dire ça?') - * s # => "Que veut dire ça?" + * s = String.new("Que veut dire \u{e7}a?") + * s # => "Que veut dire \u{e7}a?" * s.encoding # => # * * Literal strings like "" or here-documents always use @@ -1634,8 +1634,8 @@ rb_str_resurrect(VALUE str) * String.new(encoding: 'FOO') * * Raises an exception if the given +encoding+ is incompatible with +str+: - * utf8 = 'Que veut dire ça?' - * ascii = 'Que veut dire ça?'.force_encoding('ASCII') + * utf8 = "Que veut dire \u{e7}a?" + * ascii = "Que veut dire \u{e7}a?".force_encoding('ASCII') * # Raises Encoding::CompatibilityError (incompatible character encodings: UTF-8 and US-ASCII) * utf8.include? ascii * -- cgit v1.2.3