[前][次][番号順一覧][スレッド一覧]

ruby-changes:16973

From: nobu <ko1@a...>
Date: Thu, 12 Aug 2010 05:58:46 +0900 (JST)
Subject: [ruby-changes:16973] Ruby:r28970 (trunk): * include/ruby/encoding.h (rb_char_to_option_kcode): used in

nobu	2010-08-12 05:58:11 +0900 (Thu, 12 Aug 2010)

  New Revision: 28970

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28970

  Log:
    * include/ruby/encoding.h (rb_char_to_option_kcode): used in
      ripper.
    
    * node.h (rb_reserved_word): ditto.

  Modified files:
    trunk/ChangeLog
    trunk/include/ruby/encoding.h
    trunk/node.h
    trunk/parse.y

Index: include/ruby/encoding.h
===================================================================
--- include/ruby/encoding.h	(revision 28969)
+++ include/ruby/encoding.h	(revision 28970)
@@ -79,6 +79,8 @@
 
 typedef OnigEncodingType rb_encoding;
 
+int rb_char_to_option_kcode(int c, int *option, int *kcode);
+
 int rb_enc_replicate(const char *, rb_encoding *);
 int rb_define_dummy_encoding(const char *);
 #define rb_enc_to_index(enc) ((enc) ? ENC_TO_ENCINDEX(enc) : 0)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28969)
+++ ChangeLog	(revision 28970)
@@ -1,3 +1,10 @@
+Thu Aug 12 05:58:09 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* include/ruby/encoding.h (rb_char_to_option_kcode): used in
+	  ripper.
+
+	* node.h (rb_reserved_word): ditto.
+
 Thu Aug 12 00:19:53 2010  Tanaka Akira  <akr@f...>
 
 	* test/ruby/test_rubyoptions.rb (test_script_from_stdin): disable
Index: parse.y
===================================================================
--- parse.y	(revision 28969)
+++ parse.y	(revision 28970)
@@ -5701,8 +5701,6 @@
     return 0;
 }
 
-extern int rb_char_to_option_kcode(int c, int *option, int *kcode);
-
 static int
 parser_regx_options(struct parser_params *parser)
 {
Index: node.h
===================================================================
--- node.h	(revision 28969)
+++ node.h	(revision 28970)
@@ -448,9 +448,15 @@
 #define NEW_PRELUDE(p,b) NEW_NODE(NODE_PRELUDE,p,b,0)
 #define NEW_OPTBLOCK(a) NEW_NODE(NODE_OPTBLOCK,a,0,0)
 
+#if defined __GNUC__ && __GNUC__ >= 4
+#pragma GCC visibility push(default)
+#endif
+
 VALUE rb_parser_new(void);
 VALUE rb_parser_end_seen_p(VALUE);
 VALUE rb_parser_encoding(VALUE);
+VALUE rb_parser_get_yydebug(VALUE);
+VALUE rb_parser_set_yydebug(VALUE, VALUE);
 
 NODE *rb_parser_compile_cstr(volatile VALUE, const char*, const char*, int, int);
 NODE *rb_parser_compile_string(volatile VALUE, const char*, VALUE, int);
@@ -472,7 +478,12 @@
 VALUE rb_gvar_get(struct rb_global_entry *);
 VALUE rb_gvar_set(struct rb_global_entry *, VALUE);
 VALUE rb_gvar_defined(struct rb_global_entry *);
+const struct kwtable *rb_reserved_word(const char *, unsigned int);
 
+#if defined __GNUC__ && __GNUC__ >= 4
+#pragma GCC visibility pop
+#endif
+
 #if defined(__cplusplus)
 #if 0
 { /* satisfy cc-mode */

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]