Script Editor Bug
Sannyasin Brahmanathaswami
brahma at hindu.org
Tue Nov 22 17:25:03 EST 2016
I keep hitting this bug where editing a handler somehow corrupts the end of the previous handler
# PREVIOUS HANDLER CLOSES LIKE THIS:
end switch
nd updateCache # the leading "e" here is deleted, even though I have not touched this line
# THE ABOVE HAPPENS WHEN EDITING THE HANDLER BELOW:
function quoteValuesforSQLparam pValueList
# pass a list of items comma separated and return with quotes
put empty into tQuotedList # just in case
repeat for each item x in pValueList
put quote & x & quote & comma after tQuotedList
end repeat
delete char -1 of tQuotedList
return tQuotedList
end quoteValuesforSQLparam
Anyone else see this?
BR
More information about the use-livecode
mailing list