aboutsummaryrefslogtreecommitdiffstats
path: root/README.EXT
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-02 03:33:55 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-02 03:33:55 +0000
commitf9466a02cdd7502aa445d06e25ff45ed8548a0d4 (patch)
tree760e6f5bef3a3a000cef16983ec3bce4c8b45664 /README.EXT
parentaad895181ee6852c39ac68ec9c98b74f33292eed (diff)
downloadruby-f9466a02cdd7502aa445d06e25ff45ed8548a0d4.tar.gz
Revert r45239 [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.EXT b/README.EXT
index 14bd6f2c79..b1a816c271 100644
--- a/README.EXT
+++ b/README.EXT
@@ -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