G Gustavo Member³ May 22, 2009 #1 Code: FOR l_count IN 1..l_universe_size LOOP Try to jump to l_universe_size. It won't work, even if you select the word before trying to jump. PLSD 7.1.5.1398 Regards, Gustavo
Code: FOR l_count IN 1..l_universe_size LOOP Try to jump to l_universe_size. It won't work, even if you select the word before trying to jump. PLSD 7.1.5.1398 Regards, Gustavo
Marco Kalter Administrator Staff member May 25, 2009 #1 This does indeed not work correctly. It only works if you leave a space between the .. and the variable. For example: Code: FOR l_count IN 1 .. l_universe_size LOOP We'll fix it.
This does indeed not work correctly. It only works if you leave a space between the .. and the variable. For example: Code: FOR l_count IN 1 .. l_universe_size LOOP We'll fix it.
G Gustavo Member³ May 26, 2009 #1 Thx! Yeah, I had noticed that. And I always include spaces. But when I have to debug core source code, I'm not supposed to edit it, so...
Thx! Yeah, I had noticed that. And I always include spaces. But when I have to debug core source code, I'm not supposed to edit it, so...