From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from kankan.nagaokaut.ac.jp (kankan.nagaokaut.ac.jp [133.44.2.24]) by blade.nagaokaut.ac.jp (8.12.3+3.5Wbeta/8.12.6/Debian-8) with ESMTP id h52DUs9D006162; Mon, 2 Jun 2003 22:30:54 +0900 Received: from funfun.nagaokaut.ac.jp (funfun.nagaokaut.ac.jp [133.44.2.201]) by kankan.nagaokaut.ac.jp (Postfix) with SMTP id 803E358C3; Mon, 2 Jun 2003 22:33:52 +0900 (JST) Received: from helium.ruby-lang.org (helium.ruby-lang.org [210.251.121.214]) by voscc.nagaokaut.ac.jp (Postfix) with ESMTP id 60F55630029; Mon, 2 Jun 2003 22:33:50 +0900 (JST) Received: from helium.ruby-lang.org (localhost [127.0.0.1]) by helium.ruby-lang.org (Postfix) with ESMTP id CC96E288; Mon, 2 Jun 2003 22:33:49 +0900 (JST) Received: from moulon.inra.fr (moulon.inra.fr [138.102.114.1]) by helium.ruby-lang.org (Postfix) with ESMTP id E004B24E for ; Mon, 2 Jun 2003 22:33:47 +0900 (JST) Received: from moulon.inra.fr (localhost [127.0.0.1]) by moulon.inra.fr (8.10.1/8.10.1) with ESMTP id h52DXir04423 for ; Mon, 2 Jun 2003 15:33:44 +0200 (MET DST) Received: (from decoux@localhost) by moulon.inra.fr (8.10.1/8.10.1) id h52DXhg04419; Mon, 2 Jun 2003 15:33:43 +0200 (MET DST) Date: Mon, 2 Jun 2003 22:33:49 +0900 Posted: Mon, 2 Jun 2003 15:33:43 +0200 (MET DST) From: ts Reply-To: ruby-core@ruby-lang.org Subject: Re: [1.8] alias To: ruby-core@ruby-lang.org Cc: ruby-core@ruby-lang.org Message-Id: <200306021333.h52DXhg04419@moulon.inra.fr> In-Reply-To: <1054520055.121833.8931.nullmailer@picachu.netlab.jp> (matz@ruby-lang.org) References: <200306011009.h51A9Ye14844@moulon.inra.fr> <1054520055.121833.8931.nullmailer@picachu.netlab.jp> X-ML-Name: ruby-core X-Mail-Count: 01113 X-MLServer: fml [fml 4.0.3 release (20011202/4.0.3)]; post only (only members can post) X-ML-Info: If you have a question, send e-mail with the body "help" (without quotes) to the address ruby-core-ctl@ruby-lang.org; help= Precedence: bulk List-Id: ruby-core.ruby-lang.org List-Software: fml [fml 4.0.3 release (20011202/4.0.3)] List-Post: List-Owner: List-Help: List-Unsubscribe: X-Virus-Scanned: by AMaViS perl-10 >>>>> "Y" == Yukihiro Matsumoto writes: Y> No. It's a bug. Will be fixed soon. Normal ? svg% cat b.rb #!./ruby -v module M def init p "init" end alias abc init module_function :abc end M.abc svg% svg% b.rb ruby 1.8.0 (2003-06-02) [i686-linux] ./b.rb:11: M is not included in Module (TypeError) svg% Guy Decoux