From a4209572de70242c16e99d301f8de6e880ecb908 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 2 Aug 2010 15:53:48 +0000 Subject: [PATCH] * insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein at [ruby-core:31596]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ insns.def | 2 +- version.h | 4 ++-- vm_core.h | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index bbf0672740..fae768a87c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 3 00:53:47 2010 Nobuyoshi Nakada + + * insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein + at [ruby-core:31596]. + Mon Aug 2 21:51:16 2010 Nobuyoshi Nakada * ruby.c (ruby_init_loadpath_safe): rb_str_set_len modifies ptr diff --git a/insns.def b/insns.def index f75007dca2..fcd97ae613 100644 --- a/insns.def +++ b/insns.def @@ -15,7 +15,7 @@ instruction form: DEFINE_INSN - instrunction_name + instruction_name (instruction_operands, ..) (pop_values, ..) (return value) diff --git a/version.h b/version.h index 5648af5006..cd7baa40e6 100644 --- a/version.h +++ b/version.h @@ -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" diff --git a/vm_core.h b/vm_core.h index dea19fa71b..d306b9d143 100644 --- a/vm_core.h +++ b/vm_core.h @@ -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 @@ struct rb_iseq_struct { 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 @@ struct rb_iseq_struct { * argument information * * def m(a1, a2, ..., aM, # mandatory - * b1=(...), b2=(...), ..., bN=(...), # optinal + * b1=(...), b2=(...), ..., bN=(...), # optional * *c, # rest * d1, d2, ..., dO, # post * &e) # block