From 13cbec33c1335c5e582360797dfce7601bf60206 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 7 May 2001 09:26:29 +0000 Subject: * 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 --- ext/readline/readline.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/readline/readline.c b/ext/readline/readline.c index 765a00280c..c8ed81ac51 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -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++) { -- cgit v1.2.3