On Mon, Feb 07, 2005 at 10:36:28AM -0600, Randall, Larry wrote:
> I have noticed that 1.3.8 and 1.4.x ignore the \n in an alias and start
> on the same line as previous output. Example:
>
> "rev = Revision \n" \
> "syn = Syntax \n" \
>
> I have even tried:
> "lib = \n Library \n"
>
> This produces:
> Library ImageConversion.lib
>
> When \lib and \syn are "stacked", these produce:
> Library ImageConversion.lib Syntax Test of Syntax and code
> style: static CBufferCopyListener* NewL(const RThread* aSubThread)
>
> Previous output was:
>
> Library (bolded)
> ImageConversion.lib
>
> Syntax (bolded)
> Test of Syntax and code style: static
> CBufferCopyListener* NewL(const RThread* aSubThread)
To me this sounds like you want to define the aliases like this:
ALIASES = "syn=\par Syntax:\n" \
"lib=\par Library:\n"
Regards,
Dimitri
|