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

ruby-changes:16842

From: nobu <ko1@a...>
Date: Tue, 3 Aug 2010 00:58:32 +0900 (JST)
Subject: [ruby-changes:16842] Ruby:r28837 (trunk): * insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein

nobu	2010-08-03 00:53:48 +0900 (Tue, 03 Aug 2010)

  New Revision: 28837

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

  Log:
    * insns.def, vm_core.h: fixed typo.  reported by Rocky Bernstein
      <rockyb AT rubyforge.org> at [ruby-core:31596].

  Modified files:
    trunk/ChangeLog
    trunk/insns.def
    trunk/version.h
    trunk/vm_core.h

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28836)
+++ ChangeLog	(revision 28837)
@@ -1,3 +1,8 @@
+Tue Aug  3 00:53:47 2010  Nobuyoshi Nakada  <nobu@r...>
+
+	* insns.def, vm_core.h: fixed typo.  reported by Rocky Bernstein
+	  <rockyb AT rubyforge.org> at [ruby-core:31596].
+
 Mon Aug  2 21:51:16 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* ruby.c (ruby_init_loadpath_safe): rb_str_set_len modifies ptr
Index: insns.def
===================================================================
--- insns.def	(revision 28836)
+++ insns.def	(revision 28837)
@@ -15,7 +15,7 @@
 
   instruction form:
     DEFINE_INSN
-    instrunction_name
+    instruction_name
     (instruction_operands, ..)
     (pop_values, ..)
     (return value)
Index: vm_core.h
===================================================================
--- vm_core.h	(revision 28836)
+++ vm_core.h	(revision 28837)
@@ -34,7 +34,7 @@
 #ifndef ENABLE_VM_OBJSPACE
 #ifdef _WIN32
 /*
- * TODO: object space indenpendent st_table.
+ * TODO: object space independent st_table.
  * socklist needs st_table in rb_w32_sysinit(), before object space
  * initialization.
  * It is too early now to change st_hash_type, since it breaks binary
@@ -166,7 +166,7 @@
     VALUE name;	         /* String: iseq name */
     VALUE filename;      /* file information where this sequence from */
     VALUE filepath;      /* real file path or nil */
-    VALUE *iseq;         /* iseq (insn number and openrads) */
+    VALUE *iseq;         /* iseq (insn number and operands) */
     VALUE *iseq_encoded; /* encoded iseq */
     unsigned long iseq_size;
     VALUE mark_ary;	/* Array: includes operands which should be GC marked */
@@ -190,7 +190,7 @@
      * argument information
      *
      *  def m(a1, a2, ..., aM,                    # mandatory
-     *        b1=(...), b2=(...), ..., bN=(...),  # optinal
+     *        b1=(...), b2=(...), ..., bN=(...),  # optional
      *        *c,                                 # rest
      *        d1, d2, ..., dO,                    # post
      *        &e)                                 # block
Index: version.h
===================================================================
--- version.h	(revision 28836)
+++ version.h	(revision 28837)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2010-08-02"
+#define RUBY_RELEASE_DATE "2010-08-03"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
@@ -8,7 +8,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2010
 #define RUBY_RELEASE_MONTH 8
-#define RUBY_RELEASE_DAY 2
+#define RUBY_RELEASE_DAY 3
 
 #include "ruby/version.h"
 

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

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