I inherited some C++ code where each routine is preceeded by a block comment in the following style:
//*******************************************
/**
*
*///****************************************
main
(
int param
)
{
printf("Hello world.");
}
UltraEdit highlights all of the code following the block as a comment. Apparently UltraEdit does not parse the "*/" followed by "//" followed by "*" correctly. If I break it up like this, "*/ //*", or this, "*/// *", or even this, "*////*", it highlights OK. But this, "*///*", does not work.
I'm using UE V10.10c.
Is there any way for me to edit my wordfile so that UltraEdit parses this correctly?
//*******************************************
/**
*
*///****************************************
main
(
int param
)
{
printf("Hello world.");
}
UltraEdit highlights all of the code following the block as a comment. Apparently UltraEdit does not parse the "*/" followed by "//" followed by "*" correctly. If I break it up like this, "*/ //*", or this, "*/// *", or even this, "*////*", it highlights OK. But this, "*///*", does not work.
I'm using UE V10.10c.
Is there any way for me to edit my wordfile so that UltraEdit parses this correctly?