Skip to content

Commit

Permalink
add tag v2_6_4
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v2_6_4@67798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nagachika committed Aug 28, 2019
2 parents b7a2e00 + 0b9c6f6 commit 6315e42
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
1 change: 0 additions & 1 deletion lib/rdoc/generator/template/darkfish/js/darkfish.js
Expand Up @@ -72,7 +72,6 @@ function hookSearch() {
}

search.select = function(result) {
console.log(result);
window.location.href = result.firstChild.firstChild.href;
}

Expand Down
4 changes: 0 additions & 4 deletions lib/rdoc/generator/template/darkfish/js/jquery.js

This file was deleted.

6 changes: 2 additions & 4 deletions parse.y
Expand Up @@ -9861,10 +9861,8 @@ cond0(struct parser_params *p, NODE *node, int method_op, const YYLTYPE *loc)
case NODE_DOT3:
node->nd_beg = range_op(p, node->nd_beg, loc);
node->nd_end = range_op(p, node->nd_end, loc);
if (nd_type(node) == NODE_DOT2 || nd_type(node) == NODE_DOT3) {
nd_set_type(node, nd_type(node) == NODE_DOT2 ? NODE_FLIP2 : NODE_FLIP3);
parser_warn(p, node, "flip-flop is deprecated");
}
if (nd_type(node) == NODE_DOT2) nd_set_type(node,NODE_FLIP2);
else if (nd_type(node) == NODE_DOT3) nd_set_type(node, NODE_FLIP3);
if (!method_op && !e_option_supplied(p)) {
int b = literal_node(node->nd_beg);
int e = literal_node(node->nd_end);
Expand Down
2 changes: 0 additions & 2 deletions test/ruby/test_syntax.rb
Expand Up @@ -978,9 +978,7 @@ def test_warning_literal_in_condition
eval('1 if !//')
end
assert_warn('') do
verbose_bak, $VERBOSE = $VERBOSE, nil
eval('1 if !(true..false)')
$VERBOSE = verbose_bak
end
assert_warning('') do
eval('1 if !1')
Expand Down
4 changes: 2 additions & 2 deletions version.h
@@ -1,10 +1,10 @@
#define RUBY_VERSION "2.6.4"
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
#define RUBY_PATCHLEVEL 102
#define RUBY_PATCHLEVEL 104

#define RUBY_RELEASE_YEAR 2019
#define RUBY_RELEASE_MONTH 8
#define RUBY_RELEASE_DAY 27
#define RUBY_RELEASE_DAY 28

#include "ruby/version.h"

Expand Down

0 comments on commit 6315e42

Please sign in to comment.