summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-02 01:57:42 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-02 01:57:42 +0000
commit44363557ac9c47cb54a9e7b4d8d99bd891dc7f91 (patch)
treef7b91088553af60c9a5c4ee117d91e1590458b3b /README.EXT
parent47d6a7ee1c87697d650f402fc0899e7407fc3e10 (diff)
* 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
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 b1a816c271..14bd6f2c79 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