diff options
Diffstat (limited to 'lisp/menu-bar.el')
| -rw-r--r-- | lisp/menu-bar.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 75a2d70da5e..23947795112 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -101,13 +101,13 @@ | |||
| 101 | :help ,(purecopy "Make selected window fill whole frame"))) | 101 | :help ,(purecopy "Make selected window fill whole frame"))) |
| 102 | 102 | ||
| 103 | (define-key menu [new-window-on-right] | 103 | (define-key menu [new-window-on-right] |
| 104 | `(menu-item ,(purecopy "New Window on Right") split-window-side-by-side | 104 | `(menu-item ,(purecopy "New Window on Right") split-window-right |
| 105 | :enable (and (menu-bar-menu-frame-live-and-visible-p) | 105 | :enable (and (menu-bar-menu-frame-live-and-visible-p) |
| 106 | (menu-bar-non-minibuffer-window-p)) | 106 | (menu-bar-non-minibuffer-window-p)) |
| 107 | :help ,(purecopy "Make new window on right of selected one"))) | 107 | :help ,(purecopy "Make new window on right of selected one"))) |
| 108 | 108 | ||
| 109 | (define-key menu [new-window-below] | 109 | (define-key menu [new-window-below] |
| 110 | `(menu-item ,(purecopy "New Window Below") split-window-above-each-other | 110 | `(menu-item ,(purecopy "New Window Below") split-window-below |
| 111 | :enable (and (menu-bar-menu-frame-live-and-visible-p) | 111 | :enable (and (menu-bar-menu-frame-live-and-visible-p) |
| 112 | (menu-bar-non-minibuffer-window-p)) | 112 | (menu-bar-non-minibuffer-window-p)) |
| 113 | :help ,(purecopy "Make new window below selected one"))) | 113 | :help ,(purecopy "Make new window below selected one"))) |