? Source/.RIGSCore.m.swp Index: Examples/Gui/CurrencyConverter/CurrencyConverter.rb =================================================================== RCS file: /cvsroot/gnustep/gnustep/dev-libs/ruby/Examples/Gui/CurrencyConverter/CurrencyConverter.rb,v retrieving revision 1.2 diff -u -3 -p -r1.2 CurrencyConverter.rb --- Examples/Gui/CurrencyConverter/CurrencyConverter.rb 1 Oct 2001 16:08:57 -0000 1.2 +++ Examples/Gui/CurrencyConverter/CurrencyConverter.rb 10 May 2003 18:55:27 -0000 @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby # # CurrencyConverter.m: A mini over-commented sample GNUstep app # Index: Examples/Gui/FirstApp/FirstApp.rb =================================================================== RCS file: /cvsroot/gnustep/gnustep/dev-libs/ruby/Examples/Gui/FirstApp/FirstApp.rb,v retrieving revision 1.3 diff -u -3 -p -r1.3 FirstApp.rb --- Examples/Gui/FirstApp/FirstApp.rb 1 Oct 2001 16:08:57 -0000 1.3 +++ Examples/Gui/FirstApp/FirstApp.rb 10 May 2003 18:55:27 -0000 @@ -1,4 +1,4 @@ -#!/usr/local/bin/ruby +#!/usr/bin/env ruby # # Ruby script to test the GUI part of RIGS # Index: Source/RIGSCore.m =================================================================== RCS file: /cvsroot/gnustep/gnustep/dev-libs/ruby/Source/RIGSCore.m,v retrieving revision 1.7 diff -u -3 -p -r1.7 RIGSCore.m --- Source/RIGSCore.m 8 Oct 2001 10:05:28 -0000 1.7 +++ Source/RIGSCore.m 10 May 2003 18:55:28 -0000 @@ -988,7 +988,7 @@ method_selectors_for_class function for (see below) */ #ifdef GNUSTEP -static MethodList_t class_nextMethodList( Class class, void ** iterator_ptr) +static MethodList_t class_getNextMethodList( Class class, void ** iterator_ptr ) { MethodList_t mlist; @@ -1015,7 +1015,7 @@ method_selectors_for_class(Class class, while(class) { - while( (mlist = class_nextMethodList(class, &iterator)) != NULL) { + while( (mlist = class_getNextMethodList(class, &iterator)) != NULL) { for(i = 0; i < mlist->method_count; i++) { SEL sel = mlist->method_list[i].method_name;