зеркало из https://github.com/github/ruby.git
* insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein
<rockyb AT rubyforge.org> at [ruby-core:31596]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
1849a2baf1
Коммит
a4209572de
|
@ -1,3 +1,8 @@
|
|||
Tue Aug 3 00:53:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* 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@ruby-lang.org>
|
||||
|
||||
* ruby.c (ruby_init_loadpath_safe): rb_str_set_len modifies ptr
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
instruction form:
|
||||
DEFINE_INSN
|
||||
instrunction_name
|
||||
instruction_name
|
||||
(instruction_operands, ..)
|
||||
(pop_values, ..)
|
||||
(return value)
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче