From ca8f327522fa9672ef4f569c71063112308099fa Mon Sep 17 00:00:00 2001 From: zzak Date: Tue, 20 Nov 2012 03:34:15 +0000 Subject: * file.c (File::NULL): Document File::NULL constant [ruby-core:49384] [Bug #7365] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ file.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 09eb097cf9..33ae570d64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Nov 20 12:35:00 2012 Zachary Scott + + * file.c (File::NULL): Document File::NULL constant + [ruby-core:49384] [Bug #7365] + Tue Nov 20 12:05:15 2012 NAKAMURA Usaku * win32/win32.c (rb_w32_read): Windows 8 fixed one of a bug of console diff --git a/file.c b/file.c index 12622a380f..1b62ca36e1 100644 --- a/file.c +++ b/file.c @@ -5520,6 +5520,10 @@ Init_File(void) rb_file_const("LOCK_UN", INT2FIX(LOCK_UN)); rb_file_const("LOCK_NB", INT2FIX(LOCK_NB)); + /* Document-const: NULL + * + * Name of the null device + */ rb_file_const("NULL", rb_obj_freeze(rb_usascii_str_new2(null_device))); rb_define_method(rb_cFile, "path", rb_file_path, 0); -- cgit v1.2.3