diff options
author | Paul Eggert <eggert@twinsun.com> | 2002-03-23 06:48:31 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 2002-03-23 06:48:31 +0000 |
commit | 61bbbf8d130a96e38a616e7450b117beabe2e169 (patch) | |
tree | 83844e12d6a5520dbcf6247fa0daf92f227d5b05 /lib-src | |
parent | b9a0799677be27c41474cfca55268b32c1ba7e3d (diff) | |
download | emacs-61bbbf8d130a96e38a616e7450b117beabe2e169.tar.gz |
(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 98c34407044..3632e230f2d 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -1236,7 +1236,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; |