diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-07 13:35:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-07 13:35:48 +0000 |
commit | 665881adf7cc88c782b5acdd03db3e83a53a9dc0 (patch) | |
tree | aa8dfd85df133a4114db1b5b2e5253f542f8fd01 /src/xterm.c | |
parent | 86bee31c83f65d882fccc01e69c6dbbffc886307 (diff) | |
download | emacs-665881adf7cc88c782b5acdd03db3e83a53a9dc0.tar.gz |
(x_initialize) [USE_X_TOOLKIT]: Set fallback resources.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c index 534a27b7237..d78bdd50071 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -125,6 +125,11 @@ struct frame *pending_autoraise_frame; #ifdef USE_X_TOOLKIT /* The application context for Xt use. */ XtAppContext Xt_app_con; + +static String Xt_default_resources[] = +{ + 0 +}; #endif /* During an update, maximum vpos for ins/del line operations to affect. */ @@ -6038,6 +6043,7 @@ x_initialize () #ifdef USE_X_TOOLKIT XtToolkitInitialize (); Xt_app_con = XtCreateApplicationContext (); + XtAppSetFallbackResources (Xt_app_con, Xt_default_resources); #endif /* Note that there is no real way portable across R3/R4 to get the |