Fractal Softworks Forum

Please login or register.

Login with username, password and session length

Author Topic: The EVIL smileys!!!  (Read 1360 times)

dmaiski

  • Captain
  • ****
  • Posts: 422
  • resistance is futile
    • View Profile
The EVIL smileys!!!
« on: October 22, 2013, 02:47:55 AM »

when you do
Code: java
for (Iterator iter = directTargets.iterator(); iter.hasNext();)  
[code]



the evil smiley gets into your code, eats your bits and leaves muddy footprints all over your classes

[/code]
Logged
BISO
(WIP) lots of shiny new weapons ( :-[ i have more weapons then sprites :-[ )

i got a cat pad
its like a mouse pad but better!

Alex

  • Administrator
  • Admiral
  • *****
  • Posts: 24130
    • View Profile
Re: The EVIL smileys!!!
« Reply #1 on: October 22, 2013, 08:25:41 AM »

Is this a legitimate issue of some sort? I can't tell.
Logged

melnorme

  • Ensign
  • *
  • Posts: 13
    • View Profile
Re: The EVIL smileys!!!
« Reply #2 on: October 22, 2013, 08:51:27 AM »

I think he means java code that matches smiley character sequences are being converted into images inside code tags. One for the web team.

Compare:
Code: java
for (Iterator iter = directTargets.iterator(); iter.hasNext();)  
With extra space:
Code: java
for (Iterator iter = directTargets.iterator(); iter.hasNext(); )  
Logged

Alex

  • Administrator
  • Admiral
  • *****
  • Posts: 24130
    • View Profile
Re: The EVIL smileys!!!
« Reply #3 on: October 22, 2013, 09:08:31 AM »

Ahh! Thanks, guys.

Well, I don't expect to be able to fix this, at least in the near future; something to work around, looks like.
Logged