mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (arg): "||=" should not warn for uninitialized instance
variables. * eval.c (rb_eval): ditto. * eval.c (eval): preserve and restore ruby_cref as well. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
075169f071
commit
13cbec33c1
10 changed files with 71 additions and 58 deletions
|
|
@ -18,6 +18,7 @@ static VALUE mReadline;
|
|||
#ifndef READLINE_42_OR_LATER
|
||||
# define rl_filename_completion_function filename_completion_function
|
||||
# define rl_username_completion_function username_completion_function
|
||||
# define rl_completion_matches completion_matches
|
||||
#endif
|
||||
|
||||
static int
|
||||
|
|
@ -327,8 +328,8 @@ filename_completion_proc_call(self, str)
|
|||
char **matches;
|
||||
int i;
|
||||
|
||||
matches = completion_matches(StringValuePtr(str),
|
||||
rl_filename_completion_function);
|
||||
matches = rl_completion_matches(StringValuePtr(str),
|
||||
rl_filename_completion_function);
|
||||
if (matches) {
|
||||
result = rb_ary_new();
|
||||
for (i = 0; matches[i]; i++) {
|
||||
|
|
@ -354,8 +355,8 @@ username_completion_proc_call(self, str)
|
|||
char **matches;
|
||||
int i;
|
||||
|
||||
matches = completion_matches(StringValuePtr(str),
|
||||
rl_username_completion_function);
|
||||
matches = rl_completion_matches(StringValuePtr(str),
|
||||
rl_username_completion_function);
|
||||
if (matches) {
|
||||
result = rb_ary_new();
|
||||
for (i = 0; matches[i]; i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue