[svn] r7765: nemerle/trunk/tools/nemerlish/interp.n

Luntain svnadmin at nemerle.org
Sat Aug 18 21:24:37 CEST 2007


Log:
Fix a bug that prevented from specifying a reference to an assembly with a space within the path.

Author: Luntain
Date: Sat Aug 18 21:24:36 2007
New Revision: 7765

Modified:
   nemerle/trunk/tools/nemerlish/interp.n

Modified: nemerle/trunk/tools/nemerlish/interp.n
==============================================================================
--- nemerle/trunk/tools/nemerlish/interp.n	(original)
+++ nemerle/trunk/tools/nemerlish/interp.n	Sat Aug 18 21:24:36 2007
@@ -40,7 +40,7 @@
       set { 
         Evaluator.firstRun = true; // reset all stuff
         Evaluator.refr = interpassembly :: 
-                         Split (Replace (value, @"\s", ""), [',']);
+                         Split (value, [',']).Map(_.Trim());
       }
     }
   



More information about the svn mailing list