diff options
Diffstat (limited to 'lisp/version.el')
| -rw-r--r-- | lisp/version.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/version.el b/lisp/version.el index 1837cbf0a85..b8555cbb2f5 100644 --- a/lisp/version.el +++ b/lisp/version.el | |||
| @@ -56,8 +56,8 @@ to the system configuration; look at `system-configuration' instead." | |||
| 56 | (interactive "P") | 56 | (interactive "P") |
| 57 | (let ((version-string | 57 | (let ((version-string |
| 58 | (format (if (not (called-interactively-p 'interactive)) | 58 | (format (if (not (called-interactively-p 'interactive)) |
| 59 | "GNU Emacs %s (%s%s%s)\n of %s on %s" | 59 | "GNU Emacs %s (%s%s%s%s)\n of %s on %s" |
| 60 | "GNU Emacs %s (%s%s%s) of %s on %s") | 60 | "GNU Emacs %s (%s%s%s%s) of %s on %s") |
| 61 | emacs-version | 61 | emacs-version |
| 62 | system-configuration | 62 | system-configuration |
| 63 | (cond ((featurep 'motif) | 63 | (cond ((featurep 'motif) |
| @@ -68,6 +68,9 @@ to the system configuration; look at `system-configuration' instead." | |||
| 68 | ((featurep 'ns) | 68 | ((featurep 'ns) |
| 69 | (format ", NS %s" ns-version-string)) | 69 | (format ", NS %s" ns-version-string)) |
| 70 | (t "")) | 70 | (t "")) |
| 71 | (if (featurep 'cairo) | ||
| 72 | (format ", cairo version %s" cairo-version-string) | ||
| 73 | "") | ||
| 71 | (if (and (boundp 'x-toolkit-scroll-bars) | 74 | (if (and (boundp 'x-toolkit-scroll-bars) |
| 72 | (memq x-toolkit-scroll-bars '(xaw xaw3d))) | 75 | (memq x-toolkit-scroll-bars '(xaw xaw3d))) |
| 73 | (format ", %s scroll bars" | 76 | (format ", %s scroll bars" |