Kai Schmidt wrote
> I am able to put a line comment in front, but I am not able to put a 
> block comment arround. The program refuses to compile.
> 
> content= "image/gif, image/x-xbitmap, image/jpeg, */*\r\n"
> 
vs
> /*
> content= "image/gif, image/x-xbitmap, image/jpeg, */*\r\n"
> */
> 
Please note that what you've written here is (after stripping out the
comment)
 *\r\n"
 */
which is not valid.
Once you're inside a comment, the stuff you write is commentary, so
things like strings don't make any difference -- when you hit the
end-of-comment token, the comment is over.
--
Patrick TJ McPhee
DataMirror Corporation
[hidden email]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to
[hidden email]
with the following message in the body of the note
unsubscribe ibm-netrexx <e-mail address>