Mercurial > emacs
diff src/xterm.c @ 12494:bfbe2490dbf0
(x_initialize) [USE_X_TOOLKIT]: Set fallback resources.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 07 Jul 1995 13:35:48 +0000 |
| parents | 80a5aedfb4c7 |
| children | c2b2449231c2 |
line wrap: on
line diff
--- a/src/xterm.c Fri Jul 07 13:35:19 1995 +0000 +++ b/src/xterm.c Fri Jul 07 13:35:48 1995 +0000 @@ -125,6 +125,11 @@ #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 @@ #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
