diff options
| author | Yuuki Harano | 2021-11-23 22:49:03 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-11-23 22:49:03 +0900 |
| commit | bc53310aaf1a2b71c1476ae1fffb1b137fb8d617 (patch) | |
| tree | c77886e5e89914283f15a91abe709dbb7384ead8 /src | |
| parent | b22323c3b66feb3c9c0f3086cc784fab9578ff7b (diff) | |
| download | emacs-bc53310aaf1a2b71c1476ae1fffb1b137fb8d617.tar.gz emacs-bc53310aaf1a2b71c1476ae1fffb1b137fb8d617.zip | |
* src/emacs.c (main): Combine two conditions to one
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 790740deb1a..adac8fc38ab 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -2287,11 +2287,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 2287 | #ifdef HAVE_DBUS | 2287 | #ifdef HAVE_DBUS |
| 2288 | init_dbusbind (); | 2288 | init_dbusbind (); |
| 2289 | #endif | 2289 | #endif |
| 2290 | #ifdef USE_GTK | 2290 | #if defined(USE_GTK) && !defined(HAVE_PGTK) |
| 2291 | #ifndef HAVE_PGTK | ||
| 2292 | init_xterm (); | 2291 | init_xterm (); |
| 2293 | #endif | 2292 | #endif |
| 2294 | #endif | ||
| 2295 | 2293 | ||
| 2296 | /* This can create a thread that may call getenv, so it must follow | 2294 | /* This can create a thread that may call getenv, so it must follow |
| 2297 | all calls to putenv and setenv. Also, this sets up | 2295 | all calls to putenv and setenv. Also, this sets up |