1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

Reinstate the following change from 2002-03-22, which was

inadvertently lost on 2002-04-13.

(main): Use `sort -o TAGFILE TAGFILE' instead of `sort TAGFILE -o
TAGFILE', as POSIX 1003.1-2001 disallows the latter usage.
This commit is contained in:
Paul Eggert 2002-05-27 06:50:39 +00:00
parent 2570d28c05
commit 8108640c1e

View File

@ -1255,7 +1255,7 @@ main (argc, argv)
if (update)
{
char cmd[BUFSIZ];
sprintf (cmd, "sort %s -o %s", tagfile, tagfile);
sprintf (cmd, "sort -o %s %s", tagfile, tagfile);
exit (system (cmd));
}
return GOOD;