diff options
| author | Stephen Berman | 2013-04-13 16:37:20 +0200 |
|---|---|---|
| committer | Stephen Berman | 2013-04-13 16:37:20 +0200 |
| commit | 0aa3616eed6914d159d1136aaa487ac3b042cf7d (patch) | |
| tree | fa8a8e3f3ba9844d06a39a602e83cf30c31a575e /etc | |
| parent | 8c35e3c3b48cadea093d1a05a4839b9962bcce93 (diff) | |
| download | emacs-0aa3616eed6914d159d1136aaa487ac3b042cf7d.tar.gz emacs-0aa3616eed6914d159d1136aaa487ac3b042cf7d.zip | |
Make `split-window' a non-interactive function.
* doc/lispref/windows.texi (Splitting Windows): Change category of
split-window from a command to a function.
* etc/NEWS: Mention fixing `split-window' to be non-interactive.
* window.el (split-window): Remove interactive form, since as a
command this function is a special case of split-window-below.
Correct doc string.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 493095e9621..31d14b96d94 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-04-13 Stephen Berman <stephen.berman@gmx.net> | ||
| 2 | |||
| 3 | * NEWS: Mention fixing `split-window' to be non-interactive. | ||
| 4 | |||
| 1 | 2013-04-09 Tassilo Horn <tsdh@gnu.org> | 5 | 2013-04-09 Tassilo Horn <tsdh@gnu.org> |
| 2 | 6 | ||
| 3 | * themes/tsdh-dark-theme.el (tsdh-dark): Add some more faces. | 7 | * themes/tsdh-dark-theme.el (tsdh-dark): Add some more faces. |
| @@ -76,6 +76,11 @@ of the buffer is visible). | |||
| 76 | 76 | ||
| 77 | * Editing Changes in Emacs 24.4 | 77 | * Editing Changes in Emacs 24.4 |
| 78 | 78 | ||
| 79 | ** `split-window' is no longer a command, just a non-interactive function. | ||
| 80 | As a command it was a special case of `split-window-below', and as such | ||
| 81 | superfluous. After being reimplemented in Lisp, its interactive form | ||
| 82 | was mistakenly retained. | ||
| 83 | |||
| 79 | ** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized', | 84 | ** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized', |
| 80 | bound to <f11> and M-<f10>, respectively. | 85 | bound to <f11> and M-<f10>, respectively. |
| 81 | 86 | ||