mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Rename split-window-{above-each-other|split-window-side-by-side}
to split-window-below and split-window-right. * lisp/window.el (split-window-below, split-window-right): Rename from split-window-above-each-other and split-window-side-by-side respectively. All callers changed. (split-window-sensibly, split-window-sensibly): Use them. (split-window-keep-point): Doc fix. * lisp/isearch.el: Add isearch-scroll property to split-window-below and split-window-right. * lisp/follow.el (follow-mode): * lisp/vc/pcvs-util.el (cvs-pop-to-buffer-same-frame): * lisp/progmodes/ada-xref.el (ada-gdb-application): * lisp/emulation/vip.el (vip-buffer-in-two-windows): * lisp/image-dired.el (image-dired-dired-with-window-configuration): * lisp/dired-x.el (dired-do-find-marked-files): * lisp/dired.el (dired-pop-to-buffer): * lisp/bs.el (bs--show-with-configuration): * lisp/vc/emerge.el (emerge-setup-windows): * lisp/textmodes/two-column.el (2C-two-columns): * lisp/textmodes/reftex-toc.el (reftex-toc): * lisp/progmodes/gdb-mi.el (gdb-setup-windows): * lisp/progmodes/fortran.el (fortran-window-create): * lisp/net/newst-treeview.el (newsticker--treeview-window-init): * lisp/emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode): * lisp/emulation/tpu-edt.el (tpu-gold-map): * lisp/emulation/crisp.el (crisp-mode-map): * lisp/calendar/calendar.el (calendar-basic-setup): Callers changed.
This commit is contained in:
parent
196e41e4ae
commit
2d197ffbe2
27 changed files with 112 additions and 89 deletions
|
|
@ -4028,7 +4028,7 @@ window is dedicated."
|
|||
(let ((win0 (selected-window))
|
||||
(win1 (split-window nil ( / ( * (window-height) 3) 4)))
|
||||
(win2 (split-window nil ( / (window-height) 3)))
|
||||
(win3 (split-window-horizontally)))
|
||||
(win3 (split-window-right)))
|
||||
(gdb-set-window-buffer (gdb-locals-buffer-name) nil win3)
|
||||
(select-window win2)
|
||||
(set-window-buffer
|
||||
|
|
@ -4041,12 +4041,12 @@ window is dedicated."
|
|||
;; can't find a source file.
|
||||
(list-buffers-noselect))))
|
||||
(setq gdb-source-window (selected-window))
|
||||
(let ((win4 (split-window-horizontally)))
|
||||
(let ((win4 (split-window-right)))
|
||||
(gdb-set-window-buffer
|
||||
(gdb-get-buffer-create 'gdb-inferior-io) nil win4))
|
||||
(select-window win1)
|
||||
(gdb-set-window-buffer (gdb-stack-buffer-name))
|
||||
(let ((win5 (split-window-horizontally)))
|
||||
(let ((win5 (split-window-right)))
|
||||
(gdb-set-window-buffer (if gdb-show-threads-by-default
|
||||
(gdb-threads-buffer-name)
|
||||
(gdb-breakpoints-buffer-name))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue