diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-04-05 13:13:10 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-04-05 13:13:10 +0000 |
commit | fdbccd8b3aa744dd1adcf4fbeea5efd46a7298e2 (patch) | |
tree | 223d497407b7bd439ad3dc05da4ce793308102ee /lisp/version.el | |
parent | 30ca89f529cd78252144ebf32409813d529aa693 (diff) | |
download | emacs-fdbccd8b3aa744dd1adcf4fbeea5efd46a7298e2.tar.gz |
(emacs-version): Include LessTif/Motif version info.
Diffstat (limited to 'lisp/version.el')
-rw-r--r-- | lisp/version.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/version.el b/lisp/version.el index 9f96cebca89..78c7d88a1d2 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -57,7 +57,8 @@ to the system configuration; look at `system-configuration' instead." "GNU Emacs %s (%s%s%s) of %s on %s") emacs-version system-configuration - (cond ((featurep 'motif) ", Motif") + (cond ((featurep 'motif) + (concat ", " (substring motif-version-string 4))) ((featurep 'x-toolkit) ", X toolkit") (t "")) (if (and (boundp 'x-toolkit-scroll-bars) |