Hyperlink problem in For Loop

Gustavo

Member³

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
 
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.
 
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... ;)
 
Back
Top