diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-12-13 02:33:20 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-12-13 02:33:20 +0000 |
commit | 813f79d532f7fb4a1b9657649e884614460a606c (patch) | |
tree | c9ff60cbc935df01ba0561cee631bd68df6f152b /src/emacs.c | |
parent | 15d759001c50afdbd28dffc9201830c7966783b7 (diff) | |
download | emacs-813f79d532f7fb4a1b9657649e884614460a606c.tar.gz |
(main): Fix args to handle `--display DISPLAY'.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index 052546a13ca..08238e233d4 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -620,7 +620,7 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\ /* Change --display to -d, when its arg is separate. */ else if (displayname != 0 && skip_args > count_before && argv[count_before + 1][1] == '-') - argv[count_before] = "-d"; + argv[count_before + 1] = "-d"; /* Don't actually discard this arg. */ skip_args = count_before; |