Until recently, I would write do files using "/************************************/ at the beginning and end of a block of comments to make commands easier to read, but now the same syntax comments out all lines following the final "**/" . Now, I have to end the final line of the block with " */". That is, this doesn't work:
but this does:
Does anyone know the rationale for this change?
Code:
/*******************************************************************************/ *save a dataset with non-centered variables /*******************************************************************************/ save newfilename.dta,replace
Code:
/*******************************************************************************/ *save a dataset with non-centered variables /****************************************************************************** */ save newfilename.dta,replace
Does anyone know the rationale for this change?
Comment