aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2006-02-17 15:02:30 +0000
committerJuanma Barranquero2006-02-17 15:02:30 +0000
commita53d44a8570954b9d3cba533bccd8368bb5522d7 (patch)
tree9a6f677466dc41798a1a6b946fe900b1f04c81cb /src
parent8086a70c32f8243142e43a6d7c629de540bdf803 (diff)
downloademacs-a53d44a8570954b9d3cba533bccd8368bb5522d7.tar.gz
emacs-a53d44a8570954b9d3cba533bccd8368bb5522d7.zip
(Fset_window_scroll_bars): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/window.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 5ffb8c95593..d1374f3d0d3 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4286,7 +4286,7 @@ adjust_window_trailing_edge (window, delta, horiz_flag)
4286 { 4286 {
4287 /* This may happen for the minibuffer. In that case 4287 /* This may happen for the minibuffer. In that case
4288 the window_deletion_count check below does not work. */ 4288 the window_deletion_count check below does not work. */
4289 if (XINT (CURSIZE (p->next)) - delta <= 0) 4289 if (XINT (CURSIZE (p->next)) - delta <= 0)
4290 { 4290 {
4291 Fset_window_configuration (old_config); 4291 Fset_window_configuration (old_config);
4292 error ("Cannot adjust window size as specified"); 4292 error ("Cannot adjust window size as specified");
@@ -6600,7 +6600,8 @@ this is automatically adjusted to a multiple of the frame column width.
6600Third parameter VERTICAL-TYPE specifies the type of the vertical scroll 6600Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6601bar: left, right, or nil. 6601bar: left, right, or nil.
6602If WIDTH is nil, use the frame's scroll-bar width. 6602If WIDTH is nil, use the frame's scroll-bar width.
6603If TYPE is t, use the frame's scroll-bar type. */) 6603If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6604Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6604 (window, width, vertical_type, horizontal_type) 6605 (window, width, vertical_type, horizontal_type)
6605 Lisp_Object window, width, vertical_type, horizontal_type; 6606 Lisp_Object window, width, vertical_type, horizontal_type;
6606{ 6607{