* 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:
zzak 2014-03-02 01:57:42 +00:00
parent 47d6a7ee1c
commit 44363557ac
3 changed files with 12 additions and 6 deletions

View file

@ -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