From: <car...@us...> - 2012-03-13 22:47:11
|
Revision: 9875 http://octave.svn.sourceforge.net/octave/?rev=9875&view=rev Author: carandraug Date: 2012-03-13 22:47:05 +0000 (Tue, 13 Mar 2012) Log Message: ----------- __lookup_compat__: package is now dependent on older versions of octave, removing compatibility fix exclusive for 3.2.X Modified Paths: -------------- trunk/octave-forge/main/general/inst/@dict/get.m trunk/octave-forge/main/general/inst/@dict/has.m trunk/octave-forge/main/general/inst/@dict/subsasgn.m trunk/octave-forge/main/general/inst/@dict/subsref.m Removed Paths: ------------- trunk/octave-forge/main/general/inst/@dict/private/ Modified: trunk/octave-forge/main/general/inst/@dict/get.m =================================================================== --- trunk/octave-forge/main/general/inst/@dict/get.m 2012-03-13 22:42:26 UTC (rev 9874) +++ trunk/octave-forge/main/general/inst/@dict/get.m 2012-03-13 22:47:05 UTC (rev 9875) @@ -29,8 +29,6 @@ print_usage (); endif - lookup = __lookup_compat__; # FIXME: remove when 3.3.x is required. - if (ischar (key)) i = lookup (d.keys, key, "m"); if (i) Modified: trunk/octave-forge/main/general/inst/@dict/has.m =================================================================== --- trunk/octave-forge/main/general/inst/@dict/has.m 2012-03-13 22:42:26 UTC (rev 9874) +++ trunk/octave-forge/main/general/inst/@dict/has.m 2012-03-13 22:47:05 UTC (rev 9875) @@ -28,8 +28,6 @@ print_usage (); endif - lookup = __lookup_compat__; # FIXME: remove when 3.3.x is required. - if (ischar (key) || iscellstr (key)) b = lookup (d.keys, key, "b"); else Modified: trunk/octave-forge/main/general/inst/@dict/subsasgn.m =================================================================== --- trunk/octave-forge/main/general/inst/@dict/subsasgn.m 2012-03-13 22:42:26 UTC (rev 9874) +++ trunk/octave-forge/main/general/inst/@dict/subsasgn.m 2012-03-13 22:47:05 UTC (rev 9875) @@ -25,8 +25,6 @@ error ("dict: missing index"); endif - lookup = __lookup_compat__; # FIXME: remove when 3.3.x is required. - switch (s(1).type) case "()" ind = s(1).subs; Modified: trunk/octave-forge/main/general/inst/@dict/subsref.m =================================================================== --- trunk/octave-forge/main/general/inst/@dict/subsref.m 2012-03-13 22:42:26 UTC (rev 9874) +++ trunk/octave-forge/main/general/inst/@dict/subsref.m 2012-03-13 22:47:05 UTC (rev 9875) @@ -25,8 +25,6 @@ error ("dict: missing index"); endif - lookup = __lookup_compat__; # FIXME: remove when 3.3.x is required. - switch (s(1).type) case "()" ind = s(1).subs; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |