[#4479] Requesting addition to IRB (configurable standard output) — Sascha Ebach <se@...>

Hello,

13 messages 2005/02/24
[#4482] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/25

Quoting se@digitale-wertschoepfung.de, on Fri, Feb 25, 2005 at 01:22:34AM +0900:

[#4483] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/25

On 24 Feb 2005, at 19:51, Sam Roberts wrote:

[#4488] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/26

Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 02:43:31AM +0900:

[#4489] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/26

On 25 Feb 2005, at 16:03, Sam Roberts wrote:

Re: BUG: Struct.new(:a?).instance_methods

From: Yukihiro Matsumoto <matz@...>
Date: 2005-02-09 15:53:27 UTC
List: ruby-core #4404
Hi

In message "Re: BUG: Struct.new(:a?).instance_methods"
    on Wed, 9 Feb 2005 23:15:01 +0900, "Cs. Henk" <csaba-ml@beastie.creo.hu> writes:

|Hi, getting an ArgumentError with "NULL pointer given" doesn't seem to
|be the proper reaction upon doing what's in the subject.

Right.  "a?" should not be allowed for a struct member name, since
there cannot be a "a?=" method.  Here's the patch.

							matz.
--- struct.c	20 Jan 2005 09:34:36 -0000	1.51.2.7
+++ struct.c	9 Feb 2005 15:52:57 -0000
@@ -214,2 +214,6 @@ make_struct(name, members, klass)
 	ID id = SYM2ID(RARRAY(members)->ptr[i]);
+	if (!rb_is_local_id(id)) {
+	    rb_raise(rb_eNameError, "`%s' is not proper name for a struct member",
+		     rb_id2name(id));
+	}
 	if (i<10) {

In This Thread