]> git.eshelyaron.com Git - emacs.git/commitdiff
Support --no-window-system option in emacsclient
authorEli Zaretskii <eliz@gnu.org>
Wed, 12 Jun 2024 11:10:32 +0000 (14:10 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 14:20:41 +0000 (16:20 +0200)
* lib-src/emacsclient.c (print_help_and_exit, longopts): Add
'--no-window-system' alias for -t.  (Bug#71509)

(cherry picked from commit ebb0a3036d2256c214b3116b029ecbcc63040be0)

lib-src/emacsclient.c

index 79db1ef2f47fc2259704392fa14dc50ab77d2ac5..8e64f1e92d3e6508304efd26c1aee3f589faae41 100644 (file)
@@ -173,6 +173,7 @@ static struct option const longopts[] =
   { "version", no_argument,       NULL, 'V' },
   { "tty",     no_argument,       NULL, 't' },
   { "nw",      no_argument,       NULL, 't' },
+  { "no-window-system",        no_argument, NULL, 't' },
   { "create-frame", no_argument,   NULL, 'c' },
   { "reuse-frame", no_argument,   NULL, 'r' },
   { "alternate-editor", required_argument, NULL, 'a' },
@@ -690,7 +691,8 @@ Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
 The following OPTIONS are accepted:\n\
 -V, --version          Just print version info and return\n\
 -H, --help             Print this usage information message\n\
--nw, -t, --tty                 Open a new Emacs frame on the current terminal\n\
+-nw, -t, --tty, --no-window-system\n\
+                       Open a new Emacs frame on the current terminal\n\
 -c, --create-frame     Create a new frame instead of trying to\n\
                        use the current Emacs frame\n\
 -r, --reuse-frame      Create a new frame if none exists, otherwise\n\