diff options
| author | Richard M. Stallman | 1995-08-05 00:57:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-05 00:57:17 +0000 |
| commit | 0d777288c38c561590fd2a5b46771e35646832ad (patch) | |
| tree | 30b45239cc7386df022f4d293e106733dc162cb6 /src | |
| parent | d5fbc7c77e39f9ae984c3062bd5ac6ea2c7d5e47 (diff) | |
| download | emacs-0d777288c38c561590fd2a5b46771e35646832ad.tar.gz emacs-0d777288c38c561590fd2a5b46771e35646832ad.zip | |
(x_delete_display) [AIX]: Don't call XRmDestroyDatabase.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 89b7bf90529..a88cba5ea10 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -6027,10 +6027,11 @@ x_delete_display (dpyinfo) | |||
| 6027 | tail->next = tail->next->next; | 6027 | tail->next = tail->next->next; |
| 6028 | } | 6028 | } |
| 6029 | 6029 | ||
| 6030 | #ifndef USE_X_TOOLKIT | 6030 | #ifndef USE_X_TOOLKIT /* I'm told Xt does this itself. */ |
| 6031 | /* I'm told Xt does this itself. */ | 6031 | #ifndef AIX /* On AIX, XCloseDisplay calls this. */ |
| 6032 | XrmDestroyDatabase (dpyinfo->xrdb); | 6032 | XrmDestroyDatabase (dpyinfo->xrdb); |
| 6033 | #endif | 6033 | #endif |
| 6034 | #endif | ||
| 6034 | #ifdef MULTI_KBOARD | 6035 | #ifdef MULTI_KBOARD |
| 6035 | if (--dpyinfo->kboard->reference_count == 0) | 6036 | if (--dpyinfo->kboard->reference_count == 0) |
| 6036 | delete_kboard (dpyinfo->kboard); | 6037 | delete_kboard (dpyinfo->kboard); |