diff options
| author | Richard M. Stallman | 1998-08-06 05:50:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-06 05:50:47 +0000 |
| commit | dd1455c2088ef0c88d3b005960c97df3c1ea34fe (patch) | |
| tree | c5b0fb5f760c50da1656ef7bf0e3b82c95a9a20e | |
| parent | 10f96191ab0f8fc1bc81cd18b211e8b9705a8d6a (diff) | |
| download | emacs-dd1455c2088ef0c88d3b005960c97df3c1ea34fe.tar.gz emacs-dd1455c2088ef0c88d3b005960c97df3c1ea34fe.zip | |
(split-window-horizontally): Doc fix.
| -rw-r--r-- | lisp/window.el | 4 |
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. |
| 218 | This window becomes the leftmost of the two, and gets ARG columns. | 218 | This window becomes the leftmost of the two, and gets ARG columns. |
| 219 | Negative arg means select the size of the rightmost window instead. | 219 | Negative arg means select the size of the rightmost window instead. |
| 220 | No arg means split equally." | 220 | The argument includes the width of the window's scroll bar; if there |
| 221 | are no scroll bars, it includes the width of the divider column | ||
| 222 | to 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)))) |