diff options
author | Lute Kamstra <lute@gnu.org> | 2003-08-26 08:46:27 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2003-08-26 08:46:27 +0000 |
commit | 09d685fbf08891be59be82e7c088a2d32d314f56 (patch) | |
tree | 9cf2339e3901cdd0735e0aeefff0871328e23d64 | |
parent | 8a16bd4f2b7b282e5b1ac19717de8ec8e96b44c0 (diff) | |
download | emacs-09d685fbf08891be59be82e7c088a2d32d314f56.tar.gz |
(emacs-version): Check for gtk. Include gtk version info.
-rw-r--r-- | lisp/version.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/version.el b/lisp/version.el index ff90d1fd1e8..1e969a357cb 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -62,6 +62,8 @@ to the system configuration; look at `system-configuration' instead." (cond ((featurep 'motif) (concat ", " (substring motif-version-string 4))) ((featurep 'x-toolkit) ", X toolkit") + ((featurep 'gtk) + (concat ", GTK+ Version " gtk-version-string)) (t "")) (if (and (boundp 'x-toolkit-scroll-bars) (memq x-toolkit-scroll-bars '(xaw xaw3d))) |