зеркало из https://github.com/github/ruby.git
* README.EXT: [DOC] Remove needless char
* README.EXT.ja: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45239 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
47d6a7ee1c
Коммит
44363557ac
|
@ -1,3 +1,9 @@
|
|||
Sun Mar 2 10:56:12 2014 Zachary Scott <e@zzak.io>
|
||||
|
||||
* README.EXT: [DOC] Remove needless char
|
||||
|
||||
* README.EXT.ja: ditto
|
||||
|
||||
Sun Mar 2 10:47:58 2014 Eric Wong <e@80x24.org>
|
||||
|
||||
* load.c (ruby_init_ext): make idempotent to suppress warnings
|
||||
|
|
|
@ -683,9 +683,9 @@ wrapping DBM* directly, because we want to cache size information.
|
|||
To retrieve the dbmdata structure from a Ruby object, we define the
|
||||
following macro:
|
||||
|
||||
#define GetDBM(obj, dbmp) {\
|
||||
Data_Get_Struct(obj, struct dbmdata, dbmp);\
|
||||
if (dbmp->di_dbm == 0) closed_dbm();\
|
||||
#define GetDBM(obj, dbmp) {
|
||||
Data_Get_Struct(obj, struct dbmdata, dbmp);
|
||||
if (dbmp->di_dbm == 0) closed_dbm();
|
||||
}
|
||||
|
||||
This sort of complicated macro does the retrieving and close checking for
|
||||
|
|
|
@ -763,9 +763,9 @@ dbm.cではData_Make_Structを以下のように使っています.
|
|||
Dataオブジェクトからdbmstruct構造体のポインタを取り出すため
|
||||
に以下のマクロを使っています.
|
||||
|
||||
#define GetDBM(obj, dbmp) {\
|
||||
Data_Get_Struct(obj, struct dbmdata, dbmp);\
|
||||
if (dbmp->di_dbm == 0) closed_dbm();\
|
||||
#define GetDBM(obj, dbmp) {
|
||||
Data_Get_Struct(obj, struct dbmdata, dbmp);
|
||||
if (dbmp->di_dbm == 0) closed_dbm();
|
||||
}
|
||||
|
||||
ちょっと複雑なマクロですが,要するにdbmdata構造体のポインタ
|
||||
|
|
Загрузка…
Ссылка в новой задаче