From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS47066 71.19.144.0/20 X-Spam-Status: No, score=-1.9 required=3.0 tests=AWL,BAYES_00, MSGID_FROM_MTA_HEADER shortcircuit=no autolearn=unavailable version=3.3.2 Path: news.gmane.org!not-for-mail From: Eric Wong Newsgroups: gmane.comp.lang.ruby.clogger.general Subject: [PATCH 5/6] remove each_id, it was never used Date: Sat, 15 Feb 2014 23:09:07 +0000 Message-ID: <1392505748-13740-5-git-send-email-normalperson@yhbt.net> References: <1392505748-13740-1-git-send-email-normalperson@yhbt.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1392505764 7035 80.91.229.3 (15 Feb 2014 23:09:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 15 Feb 2014 23:09:24 +0000 (UTC) To: clogger@librelist.org Original-X-From: clogger@librelist.org Sun Feb 16 00:09:34 2014 Return-path: Envelope-to: gcrcg-clogger@m.gmane.org List-Archive: List-Help: List-Id: List-Post: List-Subscribe: List-Unsubscribe: Precedence: list Original-Sender: clogger@librelist.org Xref: news.gmane.org gmane.comp.lang.ruby.clogger.general:65 Archived-At: Received: from zedshaw2.xen.prgmr.com ([71.19.156.177]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WEoMX-00010x-Rn for gcrcg-clogger@m.gmane.org; Sun, 16 Feb 2014 00:09:34 +0100 Received: from zedshaw2.xen.prgmr.com (unknown [IPv6:::1]) by zedshaw2.xen.prgmr.com (Postfix) with ESMTP id 341E375019 for ; Sat, 15 Feb 2014 23:18:37 +0000 (UTC) --- GNUmakefile | 2 +- ext/clogger_ext/clogger.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 574fffd..49a7c17 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,5 +1,5 @@ all:: -RSYNC_DEST := rubyforge.org:/var/www/gforge-projects/clogger/ +RSYNC_DEST := clogger.bogomips.org:/srv/clogger/ rfproject := clogger rfpackage := clogger include pkg.mk diff --git a/ext/clogger_ext/clogger.c b/ext/clogger_ext/clogger.c index 8b05c34..122e7fb 100644 --- a/ext/clogger_ext/clogger.c +++ b/ext/clogger_ext/clogger.c @@ -122,7 +122,6 @@ struct clogger { static ID write_id; static ID ltlt_id; static ID call_id; -static ID each_id; static ID close_id; static ID to_i_id; static ID to_s_id; @@ -1045,7 +1044,6 @@ void Init_clogger_ext(void) write_id = rb_intern("write"); ltlt_id = rb_intern("<<"); call_id = rb_intern("call"); - each_id = rb_intern("each"); close_id = rb_intern("close"); to_i_id = rb_intern("to_i"); to_s_id = rb_intern("to_s"); -- 1.9.0.rc3.13.gda73b5f