From: Yuuki Harano Date: Tue, 23 Nov 2021 13:49:03 +0000 (+0900) Subject: * src/emacs.c (main): Combine two conditions to one X-Git-Tag: emacs-29.0.90~3656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc53310aaf1a2b71c1476ae1fffb1b137fb8d617;p=emacs.git * src/emacs.c (main): Combine two conditions to one --- diff --git a/src/emacs.c b/src/emacs.c index 790740deb1a..adac8fc38ab 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2287,10 +2287,8 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem #ifdef HAVE_DBUS init_dbusbind (); #endif -#ifdef USE_GTK -#ifndef HAVE_PGTK +#if defined(USE_GTK) && !defined(HAVE_PGTK) init_xterm (); -#endif #endif /* This can create a thread that may call getenv, so it must follow