diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-11 20:22:09 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-11 20:22:09 +0000 |
commit | 99dcca2febbaf4f1c9a95e18ba25810facc7662a (patch) | |
tree | dad8cfffd5849814b08521f74a30dee1a2b5c05d /lwlib | |
parent | d1dad7597ccd82b869cddd28907b82e8c900a9c2 (diff) | |
download | emacs-99dcca2febbaf4f1c9a95e18ba25810facc7662a.tar.gz |
(lwlib_toolkit_type): New variable.
Diffstat (limited to 'lwlib')
-rw-r--r-- | lwlib/lwlib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index e5c9ddc4bb4..796a69c884d 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -67,6 +67,11 @@ ERROR! no more than one of USE_MOTIF and USE_OLIT may be defined. static widget_info* all_widget_info = NULL; +#ifdef USE_MOTIF +char *lwlib_toolkit_type = "motif"; +#else +char *lwlib_toolkit_type = "lucid"; +#endif /* Forward declarations */ static void instanciate_widget_instance (/* widget_instance* instance */); |