Forum Post: Re: bug with longchar

  • Thread starter Thread starter jmls
  • Start date Start date
Status
Not open for further replies.
J

jmls

Guest
of course. thanks for the reminder ;) On 2 April 2014 10:42, Henri Christian Koster wrote: RE: bug with longchar Reply by Henri Christian Koster Slightly off topic, but just a small note. I would be mindful of the \ if you ever needed to compile the code in Unix environments. Always remember to protect your backslashes with a tilde to avoid compilation issues. Currenty: /** no need to parse if \ is not present as there are no escapes */ if index(lv_Data,"\") eq 0 then return lv_Data. Preferred: /** no need to parse if \ is not present as there are no escapes */ if index(lv_Data,"~\") eq 0 then return lv_Data. Stop receiving emails on this subject. Flag this post as spam/abuse. -- Julian Lyndon-Smith IT Director, dot.r http://www.dotr.com "The bitterness of poor quality remains long after the sweetness of low price is forgotten" Follow dot.r on http://twitter.com/DotRlimited

Continue reading...
 
Status
Not open for further replies.
Back
Top