[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] pic -t \graphtemp broken
From: |
Werner LEMBERG |
Subject: |
Re: [Groff] pic -t \graphtemp broken |
Date: |
Thu, 24 Apr 2003 00:00:38 +0200 (CEST) |
> currently (today's CVS) pic -t is broken here, as the check for existing
> \graphtemp gives an TeX error. One must use the \csname...\endcsname
> construct there, as it is done with the \graph box. The patch in file
> tex.cpp is:
> - "\\expandafter\\ifx\\graphtemp\\relax\n"
> + "\\expandafter\\ifx\\csname graphtemp\\endcsname\\relax\n"
Oops! Thanks for the report. I prefer this:
"\\ifx\\graphtemp\\undefined\n"
which is shorter. Now in the CVS.
Werner