From 44363557ac9c47cb54a9e7b4d8d99bd891dc7f91 Mon Sep 17 00:00:00 2001 From: zzak Date: Sun, 2 Mar 2014 01:57:42 +0000 Subject: * 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 --- README.EXT | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.EXT') 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 -- cgit v1.2.3