diff options
author | Paul Eggert <eggert@twinsun.com> | 2002-05-27 06:50:39 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 2002-05-27 06:50:39 +0000 |
commit | 8108640c1ea15d92a66ec280776b8ef389b06920 (patch) | |
tree | 9b2ff7422f72174041fbe0c1400116adf5c05fb8 /lib-src | |
parent | 2570d28c0543e84db34d176152535382d624adcd (diff) | |
download | emacs-8108640c1ea15d92a66ec280776b8ef389b06920.tar.gz |
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.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 0ba1ccf861f..b6f1c1b6ce1 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -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; |