]> git.eshelyaron.com Git - emacs.git/commitdiff
(put_entries): For NODE->rewritten, put pattern before \177 and name after,
authorRoland McGrath <roland@gnu.org>
Sun, 1 Aug 1993 22:13:54 +0000 (22:13 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 1 Aug 1993 22:13:54 +0000 (22:13 +0000)
not vice versa.

lib-src/etags.c

index f27ca983b8b3404bbf0d1c425db66633c7da4cbb..b78a3f8d277a59d8d5dbcb9def2b0de33371d33d 100644 (file)
@@ -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)