From cfb8e8301e7be7189f2afebc5a5f3e50a55683dc Mon Sep 17 00:00:00 2001 From: kouji Date: Fri, 12 Dec 2008 10:04:42 +0000 Subject: [PATCH] * ext/readline/readline.c: used the ExportStringValue macro instead of the OutputStringValue macro. removed the OutputStringValue macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ ext/readline/readline.c | 25 ++++++++++--------------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index cd2f2ae731..f59d6dcfce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Dec 12 19:00:49 2008 TAKAO Kouji + + * ext/readline/readline.c: used the ExportStringValue macro + instead of the OutputStringValue macro. removed the + OutputStringValue macro. + Fri Dec 12 16:23:18 2008 Nobuyoshi Nakada * parse.y (yycompile0): ruby_eval_tree_begin is always 0 when diff --git a/ext/readline/readline.c b/ext/readline/readline.c index 5e30aa3046..264f40fa81 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -63,11 +63,6 @@ static int (*history_get_offset_func)(int); static char **readline_attempted_completion_function(const char *text, int start, int end); -#define OutputStringValue(str) do {\ - SafeStringValue(str);\ - str = rb_str_conv_enc(str, rb_enc_get(str), rb_locale_encoding());\ -} while (0)\ - #ifdef HAVE_RL_EVENT_HOOK #define BUSY_WAIT 0 @@ -219,7 +214,7 @@ readline_readline(int argc, VALUE *argv, VALUE self) rb_secure(4); if (rb_scan_args(argc, argv, "02", &tmp, &add_hist) > 0) { - OutputStringValue(tmp); + ExportStringValue(tmp); prompt = RSTRING_PTR(tmp); } @@ -573,7 +568,7 @@ readline_s_set_completion_append_character(VALUE self, VALUE str) rl_completion_append_character = '\0'; } else { - OutputStringValue(str); + ExportStringValue(str); if (RSTRING_LEN(str) == 0) { rl_completion_append_character = '\0'; } else { @@ -636,7 +631,7 @@ readline_s_set_basic_word_break_characters(VALUE self, VALUE str) static char *basic_word_break_characters = NULL; rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); if (basic_word_break_characters == NULL) { basic_word_break_characters = ALLOC_N(char, RSTRING_LEN(str) + 1); @@ -699,7 +694,7 @@ readline_s_set_completer_word_break_characters(VALUE self, VALUE str) static char *completer_word_break_characters = NULL; rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); if (completer_word_break_characters == NULL) { completer_word_break_characters = ALLOC_N(char, RSTRING_LEN(str) + 1); @@ -760,7 +755,7 @@ readline_s_set_basic_quote_characters(VALUE self, VALUE str) static char *basic_quote_characters = NULL; rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); if (basic_quote_characters == NULL) { basic_quote_characters = ALLOC_N(char, RSTRING_LEN(str) + 1); @@ -824,7 +819,7 @@ readline_s_set_completer_quote_characters(VALUE self, VALUE str) static char *completer_quote_characters = NULL; rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); if (completer_quote_characters == NULL) { completer_quote_characters = ALLOC_N(char, RSTRING_LEN(str) + 1); @@ -886,7 +881,7 @@ readline_s_set_filename_quote_characters(VALUE self, VALUE str) static char *filename_quote_characters = NULL; rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); if (filename_quote_characters == NULL) { filename_quote_characters = ALLOC_N(char, RSTRING_LEN(str) + 1); @@ -977,7 +972,7 @@ hist_set(VALUE self, VALUE index, VALUE str) rb_secure(4); i = NUM2INT(index); - OutputStringValue(str); + ExportStringValue(str); if (i < 0) { i += history_length; } @@ -998,7 +993,7 @@ static VALUE hist_push(VALUE self, VALUE str) { rb_secure(4); - OutputStringValue(str); + ExportStringValue(str); add_history(RSTRING_PTR(str)); return self; } @@ -1011,7 +1006,7 @@ hist_push_method(int argc, VALUE *argv, VALUE self) rb_secure(4); while (argc--) { str = *argv++; - OutputStringValue(str); + ExportStringValue(str); add_history(RSTRING_PTR(str)); } return self;