|
From: Markus B. <mba...@us...> - 2006-01-17 20:31:34
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29453/ruby Modified Files: eclipseDebug.rb Log Message: An object ID alwas has to start with ([\\+-x). There it is not optional. If it was, the command "v i 1 customObject" would match an object id which it is not. Index: eclipseDebug.rb =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/ruby/eclipseDebug.rb,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** eclipseDebug.rb 16 Jan 2006 21:09:20 -0000 1.18 --- eclipseDebug.rb 17 Jan 2006 20:31:26 -0000 1.19 *************** *** 396,400 **** end ! when /^\s*i(?:nstance)?\s*(\d+)?\s+((?:[\\+-]0x)?[\dabcdef]+)?/ new_binding = getBinding($1) if new_binding then --- 396,400 ---- end ! when /^\s*i(?:nstance)?\s*(\d+)?\s+((?:[\\+-]0x)[\dabcdef]+)?/ new_binding = getBinding($1) if new_binding then |