aboutsummaryrefslogtreecommitdiffstats
path: root/re.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-09 04:54:39 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-09 04:54:39 +0000
commit8004d4f257a32ff3e2f34f2f9f14d7c39828816b (patch)
treeec3a199042ac8b083d70f08141358588b5fc5e65 /re.c
parentbb99128880b94ea34a9669d4b477e88f5badac4c (diff)
downloadruby-8004d4f257a32ff3e2f34f2f9f14d7c39828816b.tar.gz
* re.c: Remove deprecated kcode argument from Regexp.new and compile
patch provided by Dylan Pulliam [Bug #11495] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/re.c b/re.c
index 32bb520c22..37798ea00f 100644
--- a/re.c
+++ b/re.c
@@ -3058,10 +3058,10 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
/*
* call-seq:
- * Regexp.new(string, [options [, kcode]]) -> regexp
- * Regexp.new(regexp) -> regexp
- * Regexp.compile(string, [options [, kcode]]) -> regexp
- * Regexp.compile(regexp) -> regexp
+ * Regexp.new(string, [options]) -> regexp
+ * Regexp.new(regexp) -> regexp
+ * Regexp.compile(string, [options) -> regexp
+ * Regexp.compile(regexp) -> regexp
*
* Constructs a new regular expression from +pattern+, which can be either a
* String or a Regexp (in which case that regexp's options are propagated),
@@ -3072,9 +3072,6 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
* <em>or</em>-ed together. Otherwise, if +options+ is not
* +nil+ or +false+, the regexp will be case insensitive.
*
- * When the +kcode+ parameter is `n' or `N' sets the regexp no encoding.
- * It means that the regexp is for binary strings.
- *
* r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/
* r2 = Regexp.new('cat', true) #=> /cat/i
* r3 = Regexp.new(r2) #=> /cat/i