aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJan D2015-05-23 12:34:45 +0200
committerJan D2015-05-23 12:34:45 +0200
commitc03c730481bd2dc7bc857d9b4f1c41eea9bd495e (patch)
treea34eb6ad435ab877848f7464374570549ca55ec5 /lisp
parent7ac84a2570e1268cc040fcd529508307b2b22c01 (diff)
parent6aaa489dc112f51f6045f79b37cb78dd513e398f (diff)
downloademacs-c03c730481bd2dc7bc857d9b4f1c41eea9bd495e.tar.gz
emacs-c03c730481bd2dc7bc857d9b4f1c41eea9bd495e.zip
Merge branch 'cairo'.
Main work done by YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>. Small fixes and image work by Jan D. <jan.h.d@swipnet.se>.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog.176
-rw-r--r--lisp/version.el7
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/ChangeLog.17 b/lisp/ChangeLog.17
index a40f8f3d67a..2408ad2d832 100644
--- a/lisp/ChangeLog.17
+++ b/lisp/ChangeLog.17
@@ -1750,6 +1750,12 @@
1750 1750
17512015-02-11 Martin Rudalics <rudalics@gmx.at> 17512015-02-11 Martin Rudalics <rudalics@gmx.at>
1752 1752
17532015-02-11 Jan Djärv <jan.h.d@swipnet.se>
1754
1755 * version.el (emacs-version): Add cairo version.
1756
17572015-02-11 Martin Rudalics <rudalics@gmx.at>
1758
1753 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen): 1759 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1754 Rename frame parameter `maximized' to `fullscreen-restore'. 1760 Rename frame parameter `maximized' to `fullscreen-restore'.
1755 Restore fullwidth/-height after fullboth state. Update doc-strings. 1761 Restore fullwidth/-height after fullboth state. Update doc-strings.
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"