Forum Post: RE: bug with longchar

  • Thread starter Thread starter Henri Christian Koster
  • Start date Start date
Status
Not open for further replies.
H

Henri Christian Koster

Guest
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.

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