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

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to