(put_entries): For NODE->rewritten, put pattern before \177 and name after,
not vice versa.
This commit is contained in:
parent
c5eeaf525f
commit
cc6d6e586d
1 changed files with 4 additions and 2 deletions
|
@ -1175,12 +1175,14 @@ put_entries (node)
|
|||
if (node->rewritten)
|
||||
{
|
||||
fprintf (outf, "%s\177%s\001%d,%d\n",
|
||||
node->name, node->pat, node->lno, node->cno);
|
||||
node->pat, node->name,
|
||||
node->lno, node->cno);
|
||||
}
|
||||
else
|
||||
{
|
||||
fprintf (outf, "%s\177%d,%d\n",
|
||||
node->pat, node->lno, node->cno);
|
||||
node->pat,
|
||||
node->lno, node->cno);
|
||||
}
|
||||
}
|
||||
else if (!cxref_style)
|
||||
|
|
Loading…
Add table
Reference in a new issue