aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e649c787cd1..eff17ee9d0b 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1886,6 +1886,15 @@ scroll bars on the selected frame.
1886'scroll-bar-height' to set horizontal scroll bars and their height 1886'scroll-bar-height' to set horizontal scroll bars and their height
1887for individual frames and in 'default-frame-alist'. 1887for individual frames and in 'default-frame-alist'.
1888 1888
1889***** The 'horizontal-scroll-bars' parameter was already present and non-nil
1890by default in Emacs 24 (although it didn't have any effect). This
1891could cause a problem if you share your desktop files with Emacs 24:
1892saving desktop in v24, then restoring it in v25.1 would turn on
1893horizontal scroll bars in all buffers. To resolve this issue, put
1894this in your ~/.emacs init file
1895
1896 (modify-all-frames-parameters '((horizontal-scroll-bars . nil)))
1897
1889**** New functions 'frame-scroll-bar-height' and 1898**** New functions 'frame-scroll-bar-height' and
1890'window-scroll-bar-height' return the height of horizontal scroll 1899'window-scroll-bar-height' return the height of horizontal scroll
1891bars on a specific frame or window. 1900bars on a specific frame or window.