]> code.delx.au - gnu-emacs/commitdiff
(Vmotif_version_string) [USE_MOTIF]: New variable.
authorGerd Moellmann <gerd@gnu.org>
Thu, 5 Apr 2001 13:07:22 +0000 (13:07 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 5 Apr 2001 13:07:22 +0000 (13:07 +0000)
(syms_of_xfns): DEFVAR_LISP it.  Initialize from XmVERSION_STRING.

src/xfns.c

index 37663e35e092bbb189a15e822e3bb41704d9acad..1e14bc80fe6885978ed2f3fb7c4c7b2b983d1d52 100644 (file)
@@ -107,6 +107,14 @@ extern XFontStruct *xlwmenu_default_font;
 extern void free_frame_menubar ();
 extern double atof ();
 
+#ifdef USE_MOTIF
+
+/* LessTif/Motif version info.  */
+
+static Lisp_Object Vmotif_version_string;
+
+#endif /* USE_MOTIF */
+
 #endif /* USE_X_TOOLKIT */
 
 #define min(a,b) ((a) < (b) ? (a) : (b))
@@ -11521,10 +11529,15 @@ meaning don't clear the cache.");
 
 #ifdef USE_X_TOOLKIT
   Fprovide (intern ("x-toolkit"));
-#endif
+  
 #ifdef USE_MOTIF
   Fprovide (intern ("motif"));
-#endif
+
+  DEFVAR_LISP ("motif-version-string", &Vmotif_version_string,
+     "Version info for LessTif/Motif.");
+  Vmotif_version_string = build_string (XmVERSION_STRING);
+#endif /* USE_MOTIF */
+#endif /* USE_X_TOOLKIT */
 
   defsubr (&Sx_get_resource);