aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-06 05:50:47 +0000
committerRichard M. Stallman1998-08-06 05:50:47 +0000
commitdd1455c2088ef0c88d3b005960c97df3c1ea34fe (patch)
treec5b0fb5f760c50da1656ef7bf0e3b82c95a9a20e
parent10f96191ab0f8fc1bc81cd18b211e8b9705a8d6a (diff)
downloademacs-dd1455c2088ef0c88d3b005960c97df3c1ea34fe.tar.gz
emacs-dd1455c2088ef0c88d3b005960c97df3c1ea34fe.zip
(split-window-horizontally): Doc fix.
-rw-r--r--lisp/window.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 1f272364e6c..c18dcc41acc 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -217,7 +217,9 @@ new mode line."
217 "Split current window into two windows side by side. 217 "Split current window into two windows side by side.
218This window becomes the leftmost of the two, and gets ARG columns. 218This window becomes the leftmost of the two, and gets ARG columns.
219Negative arg means select the size of the rightmost window instead. 219Negative arg means select the size of the rightmost window instead.
220No arg means split equally." 220The argument includes the width of the window's scroll bar; if there
221are no scroll bars, it includes the width of the divider column
222to the window's right, if any. No arg means split equally."
221 (interactive "P") 223 (interactive "P")
222 (let ((old-w (selected-window)) 224 (let ((old-w (selected-window))
223 (size (and arg (prefix-numeric-value arg)))) 225 (size (and arg (prefix-numeric-value arg))))