mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
(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)
|
if (node->rewritten)
|
||||||
{
|
{
|
||||||
fprintf (outf, "%s\177%s\001%d,%d\n",
|
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
|
else
|
||||||
{
|
{
|
||||||
fprintf (outf, "%s\177%d,%d\n",
|
fprintf (outf, "%s\177%d,%d\n",
|
||||||
node->pat, node->lno, node->cno);
|
node->pat,
|
||||||
|
node->lno, node->cno);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!cxref_style)
|
else if (!cxref_style)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue