From 48245ef59212f580fa2585db3be47f4124750a78 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 13 Dec 1995 02:33:20 +0000 Subject: (main): Fix args to handle `--display DISPLAY'. --- src/emacs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1