%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /usr/share/emacs/25.2/lisp/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //usr/share/emacs/25.2/lisp/window.elc
;ELC
;;; Compiled
;;; in Emacs version 25.2
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(defalias 'internal--before-save-selected-window #[nil "\300 \301\302\303\304\305 \"\"B\207" [selected-window apply append mapcar #[(terminal) "\306!\307!\310\n\203\n\311\n\"B\310\211\203/
@\211\312\f!B	B
A\211\204*	+\207" [terminal alist top-frame frames f --dolist-tail-- frames-on-display-list tty-top-frame nil delq frame-selected-window] 5] terminal-list] 6])
(defalias 'internal--after-save-selected-window #[(state) "A\303\211\203)\n@\304	@!\203\"\305	A!\203\"\306	@	A\307#\210\nA\211\204	*\305@!\2056\310@\307\"\207" [state elt --dolist-tail-- nil frame-live-p window-live-p set-frame-selected-window norecord select-window] 5])
#@731 Execute BODY, then select the previously selected window.
The value returned is the value of the last form in BODY.

This macro saves and restores the selected window, as well as the
selected window in each frame.  If the previously selected window
is no longer live, then whatever window is selected at the end of
BODY remains selected.  If the previously selected window of some
frame is no longer live at the end of BODY, that frame's selected
window is left alone.

This macro saves and restores the current buffer, since otherwise
its normal operation could make a different buffer current.  The
order of recently selected windows and the buffer list ordering
are not altered by this macro (unless they are altered in BODY).
(defalias 'save-selected-window '(macro . #[(&rest body) "\301\302\303\304\305B\306BBDE\207" [body let ((save-selected-window--state (internal--before-save-selected-window))) save-current-buffer unwind-protect progn ((internal--after-save-selected-window save-selected-window--state))] 6 (#$ . 1076)]))
(byte-code "\300\301\302\303#\210\304\301\305\306#\207" [function-put save-selected-window lisp-indent-function 0 put edebug-form-spec t] 4)
#@156 Normal hook run by `with-temp-buffer-window' before buffer display.
This hook is run by `with-temp-buffer-window' with the buffer to be
displayed current.
(defvar temp-buffer-window-setup-hook nil (#$ . 2258))
#@177 Normal hook run by `with-temp-buffer-window' after buffer display.
This hook is run by `with-temp-buffer-window' with the buffer
displayed and current and its window selected.
(defvar temp-buffer-window-show-hook nil (#$ . 2475))
#@73 Set up temporary buffer specified by BUFFER-OR-NAME.
Return the buffer.
(defalias 'temp-buffer-window-setup #[(buffer-or-name) "\306	!r\nq\210\307 \210\310 \210\311\211\312\211\312\313 \210\314\315!\210*\n+\207" [default-directory buffer-or-name buffer old-dir buffer-read-only buffer-file-name get-buffer-create kill-all-local-variables delete-all-overlays nil t erase-buffer run-hooks temp-buffer-window-setup-hook buffer-undo-list inhibit-modification-hooks inhibit-read-only] 4 (#$ . 2711)])
#@130 Show temporary buffer BUFFER in a window.
Return the window showing BUFFER.  Pass ACTION as action argument
to `display-buffer'.
(defalias 'temp-buffer-window-show #[(buffer &optional action) "\306\211r\nq\210\307\306!\210\310eb\210\f\311=\204!\f\312=\203%
\203%\310\202&\f\313\n\"\211)\205f\314	!\211\315 =\204A\316!\210	\317	\320\"\210\321	!r\322\216\323@\324\"\210\325\326!\210
\203d\327	!\210+	+\207" [frame window buffer buffer-read-only window-combination-limit temp-buffer-resize-mode nil set-buffer-modified-p t temp-buffer temp-buffer-resize display-buffer window-frame selected-frame raise-frame set-window-hscroll 0 internal--before-with-selected-window #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord run-hooks temp-buffer-window-show-hook resize-temp-buffer-window action minibuffer-scroll-window save-selected-window--state] 4 (#$ . 3227)])
#@1908 Bind `standard-output' to BUFFER-OR-NAME, eval BODY, show the buffer.
BUFFER-OR-NAME must specify either a live buffer, or the name of
a buffer (if it does not exist, this macro creates it).

Make the buffer specified by BUFFER-OR-NAME empty before running
BODY and bind `standard-output' to that buffer, so that output
generated with `prin1' and similar functions in BODY goes into
that buffer.  Do not make that buffer current for running the
forms in BODY.  Use `with-current-buffer-window' instead if you
need to run BODY with that buffer current.

At the end of BODY, mark the specified buffer unmodified and
read-only, and display it in a window (but do not select it).
The display happens by calling `display-buffer' passing it the
ACTION argument.  If `temp-buffer-resize-mode' is enabled, the
corresponding window may be resized automatically.

Return the value returned by BODY, unless QUIT-FUNCTION specifies
a function.  In that case, run that function with two arguments -
the window showing the specified buffer and the value returned by
BODY - and return the value returned by that function.

If the buffer is displayed on a new frame, the window manager may
decide to select that frame.  In that case, it's usually a good
strategy if QUIT-FUNCTION selects the window showing the buffer
before reading any value from the minibuffer; for example, when
asking a `yes-or-no-p' question.

This runs the hook `temp-buffer-window-setup-hook' before BODY,
with the specified buffer temporarily current.  It runs the hook
`temp-buffer-window-show-hook' after displaying the buffer, with
that buffer temporarily current, and the window that was used to
display it temporarily selected.

This construct is similar to `with-output-to-temp-buffer' but,
neither runs `temp-buffer-setup-hook' which usually puts the
buffer in Help mode, nor `temp-buffer-show-function' (the ACTION
argument replaces this).
(defalias 'with-temp-buffer-window '(macro . #[(buffer-or-name action quit-function &rest body) "\306\307!\306\310!\306\311!\312\f!\203\f\202\306\313!\312!\203,\202/\306\314!\312!\203A\202D\306\315!\316\n\317
DD\320\nD	F\321\322BE\323\n\321	\324\nEEE\325\326D\327	FF\257 =\203\202 \202\214\330DC \"+!=\203\234!\202\246\330DC!\"+\"
\f=\203\264\"\202\274\330
\fDC\"\".\207" [value window buffer buffer-or-name #1=#:exp vbuffer-or-name make-symbol "buffer" "window" "value" macroexp-const-p "vbuffer-or-name" "vaction" "vquit-function" let* temp-buffer-window-setup standard-output setq progn with-current-buffer temp-buffer-window-show if functionp funcall macroexp-let* action #2=#:exp vaction quit-function #3=#:exp vquit-function body #4=#:body #5=#:body #6=#:body] 10 (#$ . 4176)]))
(put 'with-temp-buffer-window 'edebug-form-spec t)
#@210 Evaluate BODY with a buffer BUFFER-OR-NAME current and show that buffer.
This construct is like `with-temp-buffer-window' but unlike that
makes the buffer specified by BUFFER-OR-NAME current for running
BODY.
(defalias 'with-current-buffer-window '(macro . #[(buffer-or-name action quit-function &rest body) "\306\307!\306\310!\306\311!\312\f!\203\f\202\306\313!\312!\203,\202/\306\314!\312!\203A\202D\306\315!\316\n\317
DD\320\nD	F\321\n\322\323BE\322	\324\nEEF\325\326D\327	FFF =\203\201 \202\213\330DC \"+!=\203\233!\202\245\330DC!\"+\"
\f=\203\263\"\202\273\330
\fDC\"\".\207" [value window buffer buffer-or-name #1=#:exp vbuffer-or-name make-symbol "buffer" "window" "value" macroexp-const-p "vbuffer-or-name" "vaction" "vquit-function" let* temp-buffer-window-setup standard-output with-current-buffer setq progn temp-buffer-window-show if functionp funcall macroexp-let* action #2=#:exp vaction quit-function #3=#:exp vquit-function body #4=#:body #5=#:body #6=#:body] 10 (#$ . 7005)]))
(put 'with-current-buffer-window 'edebug-form-spec t)
#@201 Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer.
This construct is like `with-current-buffer-window' but unlike that
displays the buffer specified by BUFFER-OR-NAME before running BODY.
(defalias 'with-displayed-buffer-window '(macro . #[(buffer-or-name action quit-function &rest body) "\306\307!\306\310!\306\311!\312\f!\203\f\202\306\313!01\3121!\203,1\202/\306\314!234\3124!\203A4\202D\306\315!5\316\n\317
DD\320\nD	F\321\n\322	\323\n\324\325\326\327\330\3262DEDD\331\332\3332DE2FEEE\334\335\322\3366BEE\337	\340BB\341\325\326\327\342\3262DEDD\343\344\326\327\345\3262DED	EDE\341\346\326\327\347\3262DEDD\350	\351\352\327\353\3262DEDF\350	\354\355\327\356\3262DEDFF\324\3255D\3445	FF\257754=\203\3407\202\352\35754DC7\"+821=\203\3728\202\35721DC8\"+9
\f=\2039\202\357
\fDC9\".\207" [value window buffer buffer-or-name #1=#:exp vbuffer-or-name make-symbol "buffer" "window" "value" macroexp-const-p "vbuffer-or-name" "vaction" "vquit-function" let* temp-buffer-window-setup standard-output with-current-buffer setq temp-buffer-window-show if functionp cdr assq 'window-height assq-delete-all 'window-height copy-sequence let ((inhibit-read-only t) (inhibit-modification-hooks t)) progn set-window-point ((point-min)) when 'window-height ignore-errors funcall 'window-height consp 'preserve-size window-preserve-size t cadr 'preserve-size nil cddr 'preserve-size macroexp-let* action #2=#:exp vaction quit-function #3=#:exp vquit-function body #4=#:body #5=#:body #6=#:body] 17 (#$ . 8138)]))
(put 'with-displayed-buffer-window 'edebug-form-spec t)
#@113 Return WINDOW's right sibling.
Return nil if WINDOW is the root window of its frame.  WINDOW can
be any window.
(defalias 'window-right #[(window) "\205
\301!\205
\302!\207" [window window-parent window-next-sibling] 2 (#$ . 9777)])
#@112 Return WINDOW's left sibling.
Return nil if WINDOW is the root window of its frame.  WINDOW can
be any window.
(defalias 'window-left #[(window) "\205
\301!\205
\302!\207" [window window-parent window-prev-sibling] 2 (#$ . 10022)])
#@63 Return WINDOW's first child window.
WINDOW can be any window.
(defalias 'window-child #[(window) "\301!\206	\302!\207" [window window-top-child window-left-child] 2 (#$ . 10265)])
#@68 Return number of WINDOW's child windows.
WINDOW can be any window.
(defalias 'window-child-count #[(window) "\302\303	!\203\304	!\211\203	\203T\305	!\211\204)\207" [count window 0 windowp window-child window-next-sibling] 3 (#$ . 10454)])
#@63 Return last child window of WINDOW.
WINDOW can be any window.
(defalias 'window-last-child #[(window) "\301!\203\302!\211\203\303!\203\303!\202\207" [window windowp window-child window-next-sibling] 2 (#$ . 10713)])
#@152 Return buffer specified by BUFFER-OR-NAME.
BUFFER-OR-NAME must be either a buffer or a string naming a live
buffer and defaults to the current buffer.
(defalias 'window-normalize-buffer #[(buffer-or-name) "\204p\207\301!\203\302!\203\207\303\304\"\207\305!\206#\303\306\"\207" [buffer-or-name bufferp buffer-live-p error "Buffer %s is not a live buffer" get-buffer "No such buffer %s"] 3 (#$ . 10951)])
#@97 Return frame specified by FRAME.
FRAME must be a live frame and defaults to the selected frame.
(defalias 'window-normalize-frame #[(frame) "\203\301!\203\f\207\302\303\"\207\304 \207" [frame frame-live-p error "%s is not a live frame" selected-frame] 3 (#$ . 11374)])
#@247 Return the window specified by WINDOW.
If WINDOW is nil, return the selected window.  Otherwise, if
WINDOW is a live or an internal window, return WINDOW; if
LIVE-ONLY is non-nil, return WINDOW for a live window only.
Otherwise, signal an error.
(defalias 'window-normalize-window #[(window &optional live-only) "\204\302 \207	\203\303!\203\207\304\305\"\207\306!\203 \207\304\307\"\207" [window live-only selected-window window-live-p error "%s is not a live window" window-valid-p "%s is not a valid window"] 3 (#$ . 11657)])
#@449 Return the value of `frame-char-height' for WINDOW-OR-FRAME.
If WINDOW-OR-FRAME is a live frame, return the value of
`frame-char-height' for that frame.  If WINDOW-OR-FRAME is a
valid window, return the value of `frame-char-height' for that
window's frame.  In any other case, return the value of
`frame-char-height' for the selected frame.

Optional argument HORIZONTAL non-nil means to return the value of
`frame-char-width' for WINDOW-OR-FRAME.
(defalias 'frame-char-size #[(&optional window-or-frame horizontal) "\303!\203\f\304!\202\305!\203\202\306 \n\203#\307	!\202&\310	!)\207" [window-or-frame frame horizontal window-valid-p window-frame frame-live-p selected-frame frame-char-width frame-char-height] 2 (#$ . 12206)])
#@304 If non-nil, standard functions ignore window parameters.
The functions currently affected by this are `split-window',
`delete-window', `delete-other-windows' and `other-window'.

An application may bind this to a non-nil value around calls to
these functions to inhibit processing of window parameters.
(defvar ignore-window-parameters nil (#$ . 12956))
#@86 The absolute minimum number of lines of any window.
Anything less might crash Emacs.
(defconst window-safe-min-height 1 (#$ . 13316))
#@53 Return the absolute minimum pixel height of WINDOW.
(defalias 'window-safe-min-pixel-height #[(&optional window) "\302\303	!!_\207" [window-safe-min-height window frame-char-size window-normalize-window] 4 (#$ . 13456)])
#@616 The minimum total height, in lines, of any window.
The value has to accommodate one text line, a mode and header
line, a horizontal scroll bar and a bottom divider, if present.
A value less than `window-safe-min-height' is ignored.  The value
of this variable is honored when windows are resized or split.

Applications should never rebind this variable.  To resize a
window to a height less than the one specified here, an
application should instead call `window-resize' with a non-nil
IGNORE argument.  In order to have `split-window' make a window
shorter, explicitly specify the SIZE argument of that function.
(custom-declare-variable 'window-min-height 4 '(#$ . 13685) :type 'integer :version "24.1" :group 'windows)
#@51 Return the minimum pixel height of window WINDOW.
(defalias 'window-min-pixel-height #[(&optional window) "	]\303\n!_\207" [window-min-height window-safe-min-height window frame-char-size] 3 (#$ . 14414)])
#@86 The absolute minimum number of columns of a window.
Anything less might crash Emacs.
(defconst window-safe-min-width 2 (#$ . 14627))
#@52 Return the absolute minimum pixel width of WINDOW.
(defalias 'window-safe-min-pixel-width #[(&optional window) "\302\303	!\304\"_\207" [window-safe-min-width window frame-char-size window-normalize-window t] 4 (#$ . 14766)])
#@612 The minimum total width, in columns, of any window.
The value has to accommodate two text columns as well as margins,
fringes, a scroll bar and a right divider, if present.  A value
less than `window-safe-min-width' is ignored.  The value of this
variable is honored when windows are resized or split.

Applications should never rebind this variable.  To resize a
window to a width less than the one specified here, an
application should instead call `window-resize' with a non-nil
IGNORE argument.  In order to have `split-window' make a window
narrower, explicitly specify the SIZE argument of that function.
(custom-declare-variable 'window-min-width 10 '(#$ . 14999) :type 'integer :version "24.1" :group 'windows)
#@50 Return the minimum pixel width of window WINDOW.
(defalias 'window-min-pixel-width #[(&optional window) "	]\303\n\304\"_\207" [window-min-width window-safe-min-width window frame-char-size t] 4 (#$ . 15724)])
#@147 Return the absolute minimum pixel height of WINDOW.
Optional argument HORIZONTAL non-nil means return the absolute
minimum pixel width of WINDOW.
(defalias 'window-safe-min-pixel-size #[(&optional window horizontal) "\203\302	!\207\303	!\207" [horizontal window window-safe-min-pixel-width window-safe-min-pixel-height] 2 (#$ . 15941)])
#@129 Return the minimum pixel height of WINDOW.
Optional argument HORIZONTAL non-nil means return the minimum
pixel width of WINDOW.
(defalias 'window-min-pixel-size #[(&optional window horizontal) "\203\302	!\207\303	!\207" [horizontal window window-min-pixel-width window-min-pixel-height] 2 (#$ . 16288)])
#@385 Return non-nil if WINDOW has siblings in a given direction.
WINDOW must be a valid window and defaults to the selected one.

HORIZONTAL determines a direction for the window combination.  If
HORIZONTAL is omitted or nil, return non-nil if WINDOW is part of
a vertical window combination.  If HORIZONTAL is non-nil, return
non-nil if WINDOW is part of a horizontal window combination.
(defalias 'window-combined-p #[(&optional window horizontal) "\303!\304!\211\205\n\203\305	!\202\306	!)\207" [window parent horizontal window-normalize-window window-parent window-left-child window-top-child] 3 (#$ . 16602)])
#@235 Return WINDOW's first child if WINDOW is a vertical combination.
WINDOW can be any window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return WINDOW's first
child if WINDOW is a horizontal combination.
(defalias 'window-combination-p #[(&optional window horizontal) "\302!	\203\f\303!\207\304!\207" [window horizontal window-normalize-window window-left-child window-top-child] 2 (#$ . 17229)])
#@233 Return largest number of windows vertically arranged within WINDOW.
WINDOW must be a valid window and defaults to the selected one.
If HORIZONTAL is non-nil, return the largest number of
windows horizontally arranged within WINDOW.
(defalias 'window-combinations #[(window &optional horizontal) "\304!\305!\203\f\306\207	\203\307!\202\310!\2038\311!\312\211\2035\313	\"\n\\\314!\211\204&\n*\207\311!\306\211\203Q\313	\"\n]\314!\211\204B\n*\207" [window horizontal count child window-normalize-window window-live-p 1 window-left-child window-top-child window-child 0 window-combinations window-right] 4 (#$ . 17668)])
#@67 Helper function for `walk-window-tree' and `walk-window-subtree'.
(defalias 'walk-window-tree-1 #[(fun walk-window-tree-window any &optional sub-only) "\305	\205=\306	!\211\204\n\203	!\210\204*\307\310	!\n#\210\307\311	!\n#\210\f\2034\305\211\202\312	!\211\204\305)\207" [walk-window-tree-buffer walk-window-tree-window any fun sub-only nil window-buffer walk-window-tree-1 window-left-child window-top-child window-right] 5 (#$ . 18320)])
#@700 Run function FUN on each live window of FRAME.
FUN must be a function with one argument - a window.  FRAME must
be a live frame and defaults to the selected one.  ANY, if
non-nil, means to run FUN on all live and internal windows of
FRAME.

Optional argument MINIBUF t means run FUN on FRAME's minibuffer
window even if it isn't active.  MINIBUF nil or omitted means run
FUN on FRAME's minibuffer window only if it's active.  In both
cases the minibuffer window must be part of FRAME.  MINIBUF
neither nil nor t means never run FUN on the minibuffer window.

This function performs a pre-order, depth-first traversal of the
window tree.  If FUN changes the window tree, the result is
unpredictable.
(defalias 'walk-window-tree #[(fun &optional frame any minibuf) "\305!\306	\307!\n#\210\310>\2054\304!\311\f!\2053\312\f!=\2053\313=\2040\314\f!\2053	\f!)\207" [frame fun any minibuf minibuffer-window window-normalize-frame walk-window-tree-1 frame-root-window (nil t) window-live-p window-frame t minibuffer-window-active-p] 4 (#$ . 18786)])
#@505 Run function FUN on the subtree of windows rooted at WINDOW.
WINDOW defaults to the selected window.  FUN must be a function
with one argument - a window.  By default, run FUN only on live
windows of the subtree.  If the optional argument ANY is non-nil,
run FUN on all live and internal windows of the subtree.  If
WINDOW is live, run FUN on WINDOW only.

This function performs a pre-order, depth-first traversal of the
subtree rooted at WINDOW.  If FUN changes that tree, the result
is unpredictable.
(defalias 'walk-window-subtree #[(fun &optional window any) "\303!\304	\n\305$\207" [window fun any window-normalize-window walk-window-tree-1 t] 5 (#$ . 19848)])
#@622 Return first window on FRAME with PARAMETER non-nil.
FRAME defaults to the selected frame.  Optional argument VALUE
non-nil means only return a window whose window-parameter value
for PARAMETER equals VALUE (comparison is done with `equal').
Optional argument ANY non-nil means consider internal windows
too.

Optional argument MINIBUF t means consider FRAME's minibuffer
window even if it isn't active.  MINIBUF nil or omitted means
consider FRAME's minibuffer window only if it's active.  In both
cases the minibuffer window must be part of FRAME.  MINIBUF
neither nil nor t means never consider the minibuffer window.
(defalias 'window-with-parameter #[(parameter &optional value frame any minibuf) "\304\3052
\306\307	\n$0)\207" [this-value frame any minibuf nil found walk-window-tree #[(window) "\304	\"\211\205\203\n\232\205\305\306\"\207" [window parameter this-value value window-parameter throw found] 3]] 5 (#$ . 20525)])
#@169 Return root of atomic window WINDOW is a part of.
WINDOW must be a valid window and defaults to the selected one.
Return nil if WINDOW is not part of an atomic window.
(defalias 'window-atom-root #[(&optional window) "\302!\303\203\304\305\"\203\306!\211\204\n	)\207" [window root window-normalize-window nil window-parameter window-atom window-parent] 4 (#$ . 21479)])
#@82 Make WINDOW an atomic window.
WINDOW must be an internal window.  Return WINDOW.
(defalias 'window-make-atom #[(window) "\301!\204\302\303\"\207\304\305\306#\210\207" [window window-child error "Window %s is not an internal window" walk-window-subtree #[(window) "\301\302\"?\205
\303\302\304#\207" [window window-parameter window-atom set-window-parameter t] 4] t] 4 (#$ . 21869)])
#@1334 Display BUFFER in an atomic window.
This function displays BUFFER in a new window that will be
combined with an existing window to form an atomic window.  If
the existing window is already part of an atomic window, add the
new window to that atomic window.  Operations like `split-window'
or `delete-window', when applied to a constituent of an atomic
window, are applied atomically to the root of that atomic window.

ALIST is an association list of symbols and values.  The
following symbols can be used.

`window' specifies the existing window the new window shall be
  combined with.  Use `window-atom-root' to make the new window a
  sibling of an atomic window's root.  If an internal window is
  specified here, all children of that window become part of the
  atomic window too.  If no window is specified, the new window
  becomes a sibling of the selected window.  By default, the
  `window-atom' parameter of the existing window is set to `main'
  provided it is live and was not set before.

`side' denotes the side of the existing window where the new
  window shall be located.  Valid values are `below', `right',
  `above' and `left'.  The default is `below'.  By default, the
  `window-atom' parameter of the new window is set to this value.

The return value is the new window, nil when creating that window
failed.
(defalias 'display-buffer-in-atom-window #[(buffer alist) "\306\211\307\304\236A\305\236A\f\205\310\f\311\"\312\211\313\f!\314\f!\315\f\312
#\211\205m\316\203F\f=\204F\202I\317\f!!\210\204\\\320\f!\203\\\321\f\311\322#\210\321\311
#\210\323\304%.\207" [ignore-window-parameters window-combination-limit window-combination-resize alist window side t atom window-parameter window-atom nil window-normalize-window window-atom-root split-window window-make-atom window-parent window-live-p set-window-parameter main window--display-buffer root new buffer display-buffer-mark-dedicated] 7 (#$ . 22269)])
#@37 Subroutine of `window--atom-check'.
(defalias 'window--atom-check-1 #[(window) "\205A\302\303\"\203*\304\3052\306\307\310#0\204 	\311U\203&\306\312\310#\210)\202<\313!\204<\314\315!!\210\314\316!!\210\314\317!!\207" [window count window-parameter window-atom 0 reset walk-window-subtree #[(window) "\302\303\"\203\f	T\211\207\304\305\306\"\207" [window count window-parameter window-atom throw reset t] 3] t 1 #[(window) "\301\302\303#\207" [window set-window-parameter window-atom nil] 4] window-buffer window--atom-check-1 window-left-child window-top-child window-right] 4 (#$ . 24251)])
#@290 Check atomicity of all windows on FRAME.
FRAME defaults to the selected frame.  If an atomic window is
wrongly configured, reset the atomicity of all its windows on
FRAME to nil.  An atomic window is wrongly configured if it has
no child windows or one of its child windows is not atomic.
(defalias 'window--atom-check #[(&optional frame) "\301\302!!\207" [frame window--atom-check-1 frame-root-window] 3 (#$ . 24870)])
#@15 Window sides.
(defvar window-sides '(left top right bottom) (#$ . 25297))
(byte-code "\300\301\302\303\304\305\306\307\310\311&	\210\300\312\313\314\310\311\315\316\304\317\306\307&\207" [custom-declare-variable window-sides-vertical nil "If non-nil, left and right side windows are full height.\nOtherwise, top and bottom side windows are full width." :type boolean :group windows :version "24.1" window-sides-slots '(nil nil nil nil) "Maximum number of side window slots.\nThe value is a list of four elements specifying the number of\nside window slots on (in this order) the left, top, right and\nbottom side of each frame.  If an element is a number, this means\nto display at most that many side windows on the corresponding\nside.  If an element is nil, this means there's no bound on the\nnumber of slots on that side." :risky t (list :value (nil nil nil nil) (choice :tag "Left" :help-echo "Maximum slots of left side window." :value nil :format "%[Left%] %v\n" (const :tag "Unlimited" :format "%t" nil) (integer :tag "Number" :value 2 :size 5)) (choice :tag "Top" :help-echo "Maximum slots of top side window." :value nil :format "%[Top%] %v\n" (const :tag "Unlimited" :format "%t" nil) (integer :tag "Number" :value 3 :size 5)) (choice :tag "Right" :help-echo "Maximum slots of right side window." :value nil :format "%[Right%] %v\n" (const :tag "Unlimited" :format "%t" nil) (integer :tag "Number" :value 2 :size 5)) (choice :tag "Bottom" :help-echo "Maximum slots of bottom side window." :value nil :format "%[Bottom%] %v\n" (const :tag "Unlimited" :format "%t" nil) (integer :tag "Number" :value 3 :size 5)))] 12)
#@65 Return non-nil if WINDOW is a side window or the parent of one.
(defalias 'window--side-window-p #[(window) "\301\302\"\206\303!\205\301\303!\302\"\206\301\304!\302\"\207" [window window-parameter window-side window-child window-last-child] 3 (#$ . 26932)])
#@400 Return the major non-side window of frame FRAME.
The optional argument FRAME must be a live frame and defaults to
the selected one.

If FRAME has at least one side window, the major non-side window
is either an internal non-side window such that all other
non-side windows on FRAME descend from it, or the single live
non-side window of FRAME.  If FRAME has no side windows, return
its root window.
(defalias 'window--major-non-side-window #[(&optional frame) "\303!\304\211\305\306\307\310$\210\n\206\311!+\207" [frame sibling major window-normalize-frame nil walk-window-tree #[(window) "\303\304\"?\205)\305!\211\203\303	\304\"\204&\306!\211\205)\303	\304\"\205)\211\207" [window sibling major window-parameter window-side window-prev-sibling window-next-sibling] 3] t nomini frame-root-window] 5 (#$ . 27207)])
#@141 Return major side window on SIDE.
SIDE must be one of the symbols `left', `top', `right' or
`bottom'.  Return nil if no such window exists.
(defalias 'window--major-side-window #[(side) "\304 \305\n\306=\203\307\310\311\305\312$\211\204'\n\313=\203-\307\310\314\305\312$\211\203-\315!\202\272\n\311=\203>\307\310\306\305\312$\211\204O\n\314=\203U\307\310\313\305\312$\211\203U\316!\202\272\n\317>\203\211\203c	\202\272\307\310\313\305\312$\211\203t\316!\202\272\307\310\314\305\312$\211\203\205\315!\202\272	\202\272\n\320>\205\272\204\227	\202\272\307\310\306\305\312$\211\203\250\316!\202\272\307\310\311\305\312$\211\203\271\315!\202\272	*\207" [window root side window-sides-vertical frame-root-window nil left window-with-parameter window-side right t top bottom window-prev-sibling window-next-sibling (left right) (top bottom)] 5 (#$ . 28050)])
#@445 Display BUFFER in a new window on SIDE of the selected frame.
SIDE must be one of `left', `top', `right' or `bottom'.  SLOT
specifies the slot to use.  ALIST is an association list of
symbols and values as passed to `display-buffer-in-side-window'.
This function may be called only if no window on SIDE exists yet.
The new window automatically becomes the "major" side window on
SIDE.  Return the new window, nil if its creation window failed.
(defalias 'display-buffer-in-major-side-window #[(buffer side slot &optional alist) "\306>\307!\310=\203\311\202\312=\203\313\202\300\314\315\n\314#\211\205w\316\317#\210\316\320#\210\316\321\322#\210	\203O\323\236A\202T\324\236A\204m	\203_\323\202`\324\325\326 	\"\327\245BB\330\331\300%.\207" [side left-or-right major on-side window-combination-resize window-combination-limit (left right) window--major-side-window top above bottom below nil split-window set-window-parameter window-side window-slot delete-window delete-side-window window-width window-height window-total-size frame-root-window 4 window--display-buffer window new slot alist buffer] 7 (#$ . 28953)])
#@28 Delete side window WINDOW.
(defalias 'delete-side-window #[(window) "\303\304!\305\"\306\307!*\207" [window ignore-window-parameters window-combination-resize window-parameter window-parent window-side t delete-window] 3 (#$ . 30126)])
#@693 Display BUFFER in a side window of the selected frame.
ALIST is an association list of symbols and values.  The
following special symbols can be used in ALIST.

`side' denotes the side of the frame where the new window shall
  be located.  Valid values are `bottom', `right', `top' and
  `left'.  The default is `bottom'.

`slot' if non-nil, specifies the window slot where to display
  BUFFER.  A value of zero or nil means use the middle slot on
  the specified side.  A negative value means use a slot
  preceding (that is, above or on the left of) the middle slot.
  A positive value means use a slot following (that is, below or
  on the right of) the middle slot.  The default is zero.
(defalias 'display-buffer-in-side-window #[(buffer alist) "\302\236A\206\306\301\236A\206\307\211\310>\204 \311\312\n\"\210\202*	\247\204*\311\313	\"\210\314\315\n\316\317$\211\205A\316\320\321\316\211\322$\210\f\237)\205K\323\324!]\n\325=\203V\307\202q\n\326=\203`\323\202q\n\327=\203j\330\202q\n\306=\205q\331+8,\316\211*-\316\211./\316\21101\316\21123,\247\203\237,\307X\203\237\316\202\342\f\204\255\3324\n	$\202\342\3332D\f\316*\2115\205B5@*\334*\335\"\211.\247\2038.	U\203\337*-\336\333\317\"\210\2028.\307V\203\354	\307V\204\371.\307W\203	\307W\203\337	.Z!\202\n\337	!\337.!\\32\20323X\204!*132.	X\203/*/\20280\2048*05A\2115\204\273\316*0\210-\203V\3404-\341\302%\206\342,\203b
,W\203\3150\203\215\n\342>\203q\343\202r\325\30267\3440\3167#*\345*\346\347#\210**\204\270/\203\315\n\350>\203\234\351\202\235\327\30268\344/\3168#*\345*\346\347#\210**\203\315\345*\335	#\203\315\3404*\352\302%\206\3421\205\342\3451\335	#\210\34041\341\302%.\207" [alist slot side major windows slots bottom 0 (top bottom left right) error "Invalid side %s specified" "Invalid slot %s specified" window-with-parameter window-side nil t walk-window-tree #[(window) "\303\304\"	=\205\nB\211\207" [window side windows window-parameter window-side] 3] nomini 1 window-child-count left top right 2 3 display-buffer-in-major-side-window found window-parameter window-slot throw abs window--display-buffer reuse (left right) above split-window set-window-parameter delete-window delete-side-window (left right) below window window-sides-slots max-slots this-window this-slot prev-window next-window best-window best-slot abs-slot buffer --dolist-tail-- window-combination-resize next-side prev-side] 7 (#$ . 30373)])
#@660 Check the side window configuration of FRAME.
FRAME defaults to the selected frame.

A valid side window configuration preserves the following two
invariants:

- If there exists a window whose window-side parameter is
  non-nil, there must exist at least one live window whose
  window-side parameter is nil.

- If a window W has a non-nil window-side parameter (i) it must
  have a parent window and that parent's window-side parameter
  must be either nil or the same as for W, and (ii) any child
  window of W must have the same window-side parameter as W.

If the configuration is invalid, reset the window-side parameters
of all windows on FRAME to nil.
(defalias 'window--side-check #[(&optional frame) "\306\211\211\211\211\211\211\211
\3072\310\311\312\313$0\2048\2043
\2043
\2043\f\205??\205?\310\314\312\313$.\207" [parent-side parent side none bottom right nil reset walk-window-tree #[(window) "\306\307\"\310!\211\205\306\n\307\"\211\203\"	=?\205\235\311\312\313\"\207	\2040\314!\205\235\313\211\207	\315>\203<\316!\202?\317!\203G\311\312\313\"\207	\305=\203Z
\203V\311\312\313\"\207\313\211\207	\320=\203o\203j\311\312\313\"\207\313\211\207	\321=\203\204\203\311\312\313\"\207\313\211\207	\322=\203\231\203\224\311\312\313\"\207\313\211\207\311\312\313\"\207" [window side parent parent-side none left window-parameter window-side window-parent throw reset t window-buffer (left top) window-prev-sibling window-next-sibling top right bottom] 4] t nomini #[(window) "\301\302\303#\207" [window set-window-parameter window-side nil] 4] top left frame] 8 (#$ . 32912)])
#@79 Check atomic and side windows on FRAME.
FRAME defaults to the selected frame.
(defalias 'window--check #[(&optional frame) "\301!\210\302!\207" [frame window--side-check window--atom-check] 2 (#$ . 34567)])
#@194 Dump WINDOW to buffer *window-frame-dump*.
WINDOW must be a valid window and defaults to the selected one.
Optional argument ERASE non-nil means erase *window-frame-dump*
before writing to it.
(defalias 'window--dump-window #[(&optional window erase) "\304!r\305\306!q\210	\203\307 \210\310\311\312!#\310\313\314!\315!\316\317\211#\316\320\317#\321!&\310\322\323!\324!\325\317\"\325!\326!&\310\327\330\317\"\330!\331!$\261\210\332!\203\237\333!\334!\310\335\336\317\"\337\317\"\336!\337!%\310\340@\n@\206|\341\nA\206\202\341$\310\342A@\343!\344!$\310\345\346!\347!\350!$\261\210*\351c)\207" [window erase margins fringes window-normalize-window get-buffer-create "*window-frame-dump*" erase-buffer format "%s   parent: %s\n" window-parent "pixel left: %s   top: %s   size: %s x %s   new: %s\n" window-pixel-left window-pixel-top window-size t nil window-new-pixel "char left: %s   top: %s   size: %s x %s   new: %s\n" window-left-column window-top-line window-total-size window-new-total "normal: %s x %s   new: %s\n" window-normal-size window-new-normal window-live-p window-fringes window-margins "body pixel: %s x %s   char: %s x %s\n" window-body-width window-body-height "width left fringe: %s  left margin: %s  right margin: %s\n" 0 "width right fringe: %s  scroll-bar: %s  divider: %s\n" window-scroll-bar-width window-right-divider-width "height header-line: %s  mode-line: %s  divider: %s\n" window-header-line-height window-mode-line-height window-bottom-divider-width "\n"] 10 (#$ . 34783)])
#@257 Dump WINDOW-OR-FRAME to buffer *window-frame-dump*.
WINDOW-OR-FRAME can be a frame or a window and defaults to the
selected frame.  When WINDOW-OR-FRAME is a window, dump that
window's frame.  The buffer *window-frame-dump* is erased before
dumping to it.
(defalias 'window--dump-frame #[(&optional window-or-frame) "\203\n\303!\203\304!\202\"\305!\204\306!\203 \202\"\304 \307	!r\310\311!q\210\312 \210\313\314\315\n!\316\n!\317\n!\320\n!\321\n!\322\n!&\313\323\324\n!\325\n!\326\n!\327\n!%\313\330\331\332!\203d\332\n\333\"\202e\334\335\n!\336\n!\337\n!\340\n!\341\n!\342\n!&\261\210\343\344\n\333\211$+\207" [window-or-frame window frame frame-live-p frame-root-window window-live-p window-child window-frame get-buffer-create "*window-frame-dump*" erase-buffer format "frame pixel: %s x %s   cols/lines: %s x %s   units: %s x %s\n" frame-pixel-width frame-pixel-height frame-total-cols frame-total-lines frame-char-width frame-char-height "frame text pixel: %s x %s   cols/lines: %s x %s\n" frame-text-width frame-text-height frame-text-cols frame-text-lines "tool: %s  scroll: %s/%s  fringe: %s  border: %s  right: %s  bottom: %s\n\n" fboundp tool-bar-height t "0" frame-scroll-bar-width frame-scroll-bar-height frame-fringe-width frame-border-width frame-right-divider-width frame-bottom-divider-width walk-window-tree window--dump-window] 12 (#$ . 36335)])
#@787 Return the total height or width of WINDOW.
WINDOW must be a valid window and defaults to the selected one.

If HORIZONTAL is omitted or nil, return the total height of
WINDOW, in lines.  If WINDOW is live, its total height includes,
in addition to the height of WINDOW's text, the heights of
WINDOW's mode and header line and a bottom divider, if any.

If HORIZONTAL is non-nil, return the total width of WINDOW, in
columns.  If WINDOW is live, its total width includes, in
addition to the width of WINDOW's text, the widths of WINDOW's
fringes, margins, scroll bars and its right divider, if any.

If WINDOW is internal, return the respective size of the screen
areas spanned by its children.

Optional argument ROUND is handled as for `window-total-height'
and `window-total-width'.
(defalias 'window-total-size #[(&optional window horizontal round) "\203	\303	\n\"\207\304	\n\"\207" [horizontal window round window-total-width window-total-height] 3 (#$ . 37727)])
#@541 Return the height or width of WINDOW.
WINDOW must be a valid window and defaults to the selected one.

If HORIZONTAL is omitted or nil, return the total height of
WINDOW, in lines, like `window-total-height'.  Otherwise return
the total width, in columns, like `window-total-width'.

Optional argument PIXELWISE means return the pixel size of WINDOW
like `window-pixel-height' and `window-pixel-width'.

Optional argument ROUND is ignored if PIXELWISE is non-nil and
handled as for `window-total-height' and `window-total-width'
otherwise.
(defalias 'window-size #[(&optional window horizontal pixelwise round) "\203	\203\f\304\n!\207\305\n\"\207	\203\306\n!\207\307\n\"\207" [horizontal pixelwise window round window-pixel-width window-total-width window-pixel-height window-total-height] 3 (#$ . 38705)])
#@404 Non-nil in a buffer means windows displaying the buffer are fixed-size.
If the value is `height', then only the window's height is fixed.
If the value is `width', then only the window's width is fixed.
Any other non-nil value fixes both the width and the height.

Emacs won't change the size of any window displaying that buffer,
unless it has no other choice (like when deleting a neighboring
window).
(defvar window-size-fixed nil (#$ . 39527))
(make-variable-buffer-local 'window-size-fixed)
#@188 Return height of WINDOW as `window-preserve-size' would preserve it.
Optional argument HORIZONTAL non-nil means to return the width of
WINDOW as `window-preserve-size' would preserve it.
(defalias 'window--preservable-size #[(window &optional horizontal) "\203	\302	\303\"\207\304\305	\303\"\306	!\307	!#\207" [horizontal window window-body-width t + window-body-height window-header-line-height window-mode-line-height] 5 (#$ . 40029)])
#@818 Preserve height of window WINDOW.
WINDOW must be a live window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means preserve the width of
WINDOW.

PRESERVE t means to preserve the current height/width of WINDOW's
body in frame and window resizing operations whenever possible.
The height/width of WINDOW will change only if Emacs has no other
choice.  Resizing a window whose height/width is preserved never
throws an error.

PRESERVE nil means to stop preserving the height/width of WINDOW,
lifting the respective restraint induced by a previous call of
`window-preserve-size' for WINDOW.  Calling `enlarge-window',
`shrink-window', `split-window' or `fit-window-to-buffer' with
WINDOW as argument also removes the respective restraint.

Other values of PRESERVE are reserved for future use.
(defalias 'window-preserve-size #[(&optional window horizontal preserve) "\306\307\"\310\311\"\211A@\312	8\f\203*\313\311\314!
\205$\315\307\"E#\202:\313\311\314!\n
\2058\315!E#+\207" [window parameter width height horizontal preserve window-normalize-window t window-parameter window-preserved-size 2 set-window-parameter window-buffer window--preservable-size] 8 (#$ . 40476)])
#@186 Return preserved height of window WINDOW.
WINDOW must be a live window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means to return preserved
width of WINDOW.
(defalias 'window-preserved-size #[(&optional window horizontal) "\306\307\"\310\311\"\211@	A@\312	8\n\313!=\205&
\203%\202&\f,\207" [window parameter buffer width height horizontal window-normalize-window t window-parameter window-preserved-size 2 window-buffer] 4 (#$ . 41697)])
#@168 Return non-nil when the height of WINDOW shall be preserved.
Optional argument HORIZONTAL non-nil means to return non-nil when
the width of WINDOW shall be preserved.
(defalias 'window--preserve-size #[(window horizontal) "\303	\"\211\247\205\n\304	\"U)\207" [window horizontal size window-preserved-size window--preservable-size] 5 (#$ . 42182)])
#@331 Return safe minimum size of WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return the minimum
number of columns of WINDOW; otherwise return the minimum number
of WINDOW's lines.

Optional argument PIXELWISE non-nil means return the minimum pixel-size
of WINDOW.
(defalias 'window-safe-min-size #[(&optional window horizontal pixelwise) "\305!	\203\n\203\306\307!!_\207\f\310\307!!_\207\n\203\"\207\f\207" [window pixelwise horizontal window-safe-min-width window-safe-min-height window-normalize-window frame-char-width window-frame frame-char-height] 4 (#$ . 42542)])
#@408 Return the minimum size of WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return the minimum
number of columns of WINDOW; otherwise return the minimum number
of WINDOW's lines.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument PIXELWISE non-nil means
return the minimum pixel-size of WINDOW.
(defalias 'window-min-size #[(&optional window horizontal ignore pixelwise) "\304\305!	\n$\207" [window horizontal ignore pixelwise window--min-size-1 window-normalize-window] 5 (#$ . 43197)])
#@172 Return non-nil if IGNORE says to ignore height restrictions for WINDOW.
HORIZONTAL non-nil means to return non-nil if IGNORE says to
ignore width restrictions for WINDOW.
(defalias 'window--min-size-ignore-p #[(window horizontal ignore) "\302!\203\n	=\207\303>?\207" [ignore window window-valid-p (nil preserved)] 2 (#$ . 43806)])
#@41 Internal function of `window-min-size'.
(defalias 'window--min-size-1 #[(window horizontal ignore pixelwise) "\306!\211\203@\307\310	\"\203&	\203;\n\311	\f
$\\\312	!\211\202	\203;\n\311	\f
$]\312	!\211\204*\n)\202\211r\313!q\210\314!\203\\
\203X\315\316!!\202\210\317\202\210\320\f#\203l\321
#\202\210\f\322=\203z\323
#\202\210\203.\324\325\"&\326!'\327!(\330\331\"\211\205\242@\247\205\242@)\205\263A\247\205\263A*\332\323\325\211#)\206\307(@\206\307\307&_*\206\326(A\206\326\307&_'@'A@\333!\334!&+
\203,\203\370+\202\335+&\"&_\336\f#\203
\307\202\337!]\202)\335+&\"\336\f#\203&\307\202(-].\202\210\324!\332\323\340\325#\341!\342!\343!\344!%.&
\203r,\203V.\202_\335.&\"&_\336\f#\203k\307\202n\345!]\202\207\335.&\"\336\f#\203\204\307\202\206/]*))\207" [window sub value horizontal ignore pixelwise window-child 0 window-combined-p window--min-size-1 window-right window-buffer window-minibuffer-p frame-char-height window-frame 1 window-size-fixed-p window-size safe window-safe-min-size frame-char-size t window-fringes window-margins window-parameter min-margins + window-scroll-bar-width window-right-divider-width ceiling window--min-size-ignore-p window-min-pixel-width nil window-header-line-height window-scroll-bar-height window-mode-line-height window-bottom-divider-width window-min-pixel-height char-size fringes margins left-min-margin right-min-margin pixel-width window-resize-pixelwise window-min-width pixel-height window-min-height] 10 (#$ . 44147)])
#@998 Return DELTA if DELTA lines can be added to WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return DELTA if DELTA
columns can be added to WINDOW.  A return value of zero means
that no lines (or columns) can be added to WINDOW.

This function looks only at WINDOW and, recursively, its child
windows.  The function `window-resizable' looks at other windows
as well.

DELTA positive means WINDOW shall be enlarged by DELTA lines or
columns.  If WINDOW cannot be enlarged by DELTA lines or columns
return the maximum value in the range 0..DELTA by which WINDOW
can be enlarged.

DELTA negative means WINDOW shall be shrunk by -DELTA lines or
columns.  If WINDOW cannot be shrunk by -DELTA lines or columns,
return the minimum value in the range DELTA..0 by which WINDOW
can be shrunk.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument PIXELWISE non-nil means
interpret DELTA as pixels.
(defalias 'window-sizable #[(window delta &optional horizontal ignore pixelwise) "\305!	\306W\203\307\n\f$\310\n\f#Z	]\207	\306V\203+\311\n#\203)\306\207	\207\306\207" [window delta horizontal ignore pixelwise window-normalize-window 0 window-min-size window-size window-size-fixed-p] 5 (#$ . 45757)])
#@205 Return t if WINDOW can be resized by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
For the meaning of the arguments of this function see the
doc-string of `window-sizable'.
(defalias 'window-sizable-p #[(window delta &optional horizontal ignore pixelwise) "\305!	\306V\203\307	\n\f%	Y\207\307	\n\f%	X\207" [window delta horizontal ignore pixelwise window-normalize-window 0 window-sizable] 6 (#$ . 47074)])
#@46 Internal function for `window-size-fixed-p'.
(defalias 'window--size-fixed-1 #[(window horizontal ignore) "\305!\3062	\203P\307	\n\"\2033	\203,\310	\n#\204$\311\306\312\"\210\313	!\211\204\311\306\314\"\202~	\205~\310	\n#\203D\311\306\314\"\210\313	!\211\2047\312\202~\315!\203]=?\205~\316=\204j\317\n\"\206~r\320!q\210\n\203z\f\321>\202}\f\322>)0)\207" [window sub horizontal ignore window-size-fixed window-child fixed window-combined-p window--size-fixed-1 throw nil window-right t windowp preserved window--preserve-size window-buffer (width t) (height t)] 5 (#$ . 47526)])
#@436 Return non-nil if WINDOW's height is fixed.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return non-nil if
WINDOW's width is fixed.  The optional argument IGNORE has the
same meaning as for `window-resizable'.

If this function returns nil, this does not necessarily mean that
WINDOW can be resized in the desired direction.  The function
`window-resizable' can tell that.
(defalias 'window-size-fixed-p #[(&optional window horizontal ignore) "\303!\204\f\304>\205\305\306	!\n#\207" [ignore window horizontal windowp (nil preserved) window--size-fixed-1 window-normalize-window] 4 (#$ . 48142)])
#@43 Internal function for `window-min-delta'.
(defalias 'window--min-delta-1 #[(window delta &optional horizontal ignore trail noup pixelwise) "\306!\204\307\207\306!\310	!\3112\220\312\n\"\203O\f\313=\n\203K\n=\2030\f\314=\202C
\204C\315\n#\204C\316\311\"\210\317\n!\211\204#)\202x\n\203x\n=\204p\320\n\321$\322\n$Z\307]^\317\n!\211\204S\203\202\202\217\323	\f\324&0*\207" [window parent sub horizontal trail skip window-parent 0 window-child done window-combined-p after before window-size-fixed-p throw window-right window-size ceiling window-min-size window--min-delta-1 nil ignore delta pixelwise noup] 9 (#$ . 48812)])
#@993 Return number of lines by which WINDOW can be shrunk.
WINDOW must be a valid window and defaults to the selected one.
Return zero if WINDOW cannot be shrunk.

Optional argument HORIZONTAL non-nil means return number of
columns by which WINDOW can be shrunk.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument TRAIL restricts the
windows that can be enlarged.  If its value is `before', only
windows to the left of or above WINDOW can be enlarged.  If it is
`after', only windows to the right of or below WINDOW can be
enlarged.

Optional argument NOUP non-nil means don't go up in the window
tree, but try to enlarge windows within WINDOW's combination
only.  Optional argument NODOWN non-nil means don't check whether
WINDOW itself (and its child windows) can be shrunk; check only
whether at least one other window can be enlarged appropriately.

Optional argument PIXELWISE non-nil means return number of pixels
by which WINDOW can be shrunk.
(defalias 'window-min-delta #[(&optional window horizontal ignore trail noup nodown pixelwise) "\306!\307	\n\310$\311	\n$\f\203&\312
	
\n&\202>
\fX\2030\313\202>\312
\fZ	
\n&*\207" [window horizontal pixelwise ignore minimum size window-normalize-window window-size floor window-min-size window--min-delta-1 0 nodown trail noup] 8 (#$ . 49496)])
#@249 Return minimum number of lines of FRAME's windows.
HORIZONTAL non-nil means return number of columns of FRAME's
windows.  The optional argument IGNORE has the same meaning as
for `window-resizable'.  PIXELWISE non-nil means return sizes in
pixels.
(defalias 'frame-windows-min-size #[(&optional frame horizontal ignore pixelwise) "\306!\307!\310	!\311	\f
$\n\203#\204#\311\n\312
$\202$\313\\*\207" [frame root mini horizontal ignore pixelwise window-normalize-frame frame-root-window window-next-sibling window-min-size nil 0] 6 (#$ . 50865)])
#@42 Internal function of `window-max-delta'.
(defalias 'window--max-delta-1 #[(window delta &optional horizontal ignore trail noup pixelwise) "\306!\204	\207\306!\307\n!\3102\216\311\f\"\203X
\312=\203T=\2032
\313=\202L\204L	\314\f\315$\316\f$Z\317]\\\320!\211\204$)\202x\203x=\204p\321\f#\203p\322\310	\"\210\320!\211\204\\\203\201	\202\215\323\n	\f
\324&0*\207" [window delta parent sub horizontal trail window-parent window-child fixed window-combined-p after before window-size floor window-min-size 0 window-right window-size-fixed-p throw window--max-delta-1 nil skip pixelwise ignore noup] 9 (#$ . 51426)])
#@1034 Return maximum number of lines by which WINDOW can be enlarged.
WINDOW must be a valid window and defaults to the selected one.
The return value is zero if WINDOW cannot be enlarged.

Optional argument HORIZONTAL non-nil means return maximum number
of columns by which WINDOW can be enlarged.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument TRAIL restricts the
windows that can be enlarged.  If its value is `before', only
windows to the left of or above WINDOW can be enlarged.  If it is
`after', only windows to the right of or below WINDOW can be
enlarged.

Optional argument NOUP non-nil means don't go up in the window
tree but try to obtain the entire space from windows within
WINDOW's combination.  Optional argument NODOWN non-nil means do
not check whether WINDOW itself (and its child windows) can be
enlarged; check only whether other windows can be shrunk
appropriately.

Optional argument PIXELWISE non-nil means return number of
pixels by which WINDOW can be enlarged.
(defalias 'window-max-delta #[(&optional window horizontal ignore trail noup nodown pixelwise) "\306!	\204\307\n#\203\310\207\311\310\n\f
\n&\207" [window nodown horizontal ignore trail noup window-normalize-window window-size-fixed-p 0 window--max-delta-1 pixelwise] 8 (#$ . 52100)])
#@1416 Return DELTA if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
can be resized horizontally by DELTA columns.  A return value of
zero means that WINDOW is not resizable.

DELTA positive means WINDOW shall be enlarged by DELTA lines or
columns.  If WINDOW cannot be enlarged by DELTA lines or columns,
return the maximum value in the range 0..DELTA by which WINDOW
can be enlarged.

DELTA negative means WINDOW shall be shrunk by -DELTA lines or
columns.  If WINDOW cannot be shrunk by -DELTA lines or columns,
return the minimum value in the range DELTA..0 that can be used
for shrinking WINDOW.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument TRAIL `before' means only
windows to the left of or below WINDOW can be shrunk.  Optional
argument TRAIL `after' means only windows to the right of or
above WINDOW can be shrunk.

Optional argument NOUP non-nil means don't go up in the window
tree but check only whether space can be obtained from (or given
to) WINDOW's siblings.  Optional argument NODOWN non-nil means
don't go down in the window tree.  This means do not check
whether resizing would violate size restrictions of WINDOW or its
child windows.

Optional argument PIXELWISE non-nil means interpret DELTA as
number of pixels.
(defalias 'window--resizable #[(window delta &optional horizontal ignore trail noup nodown pixelwise) "\306!	\307W\203\310\n\f
\n&[	]\207	\307V\203/\311\n\f
\n&	^\207\307\207" [window delta horizontal ignore trail noup window-normalize-window 0 window-min-delta window-max-delta nodown pixelwise] 8 (#$ . 53438)])
#@289 Return t if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
For the meaning of the arguments of this function see the
doc-string of `window--resizable'.

Optional argument PIXELWISE non-nil means interpret DELTA as
pixels.
(defalias 'window--resizable-p #[(window delta &optional horizontal ignore trail noup nodown pixelwise) "\306!	\307V\203\310	\n\f
	\n&	Y\207\310	\n\f
	\n&	X\207" [window delta horizontal ignore trail noup window-normalize-window 0 window--resizable nodown pixelwise] 9 (#$ . 55191)])
#@1308 Return DELTA if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
can be resized horizontally by DELTA columns.  A return value of
zero means that WINDOW is not resizable.

DELTA positive means WINDOW shall be enlarged by DELTA lines or
columns.  If WINDOW cannot be enlarged by DELTA lines or columns
return the maximum value in the range 0..DELTA by which WINDOW
can be enlarged.

DELTA negative means WINDOW shall be shrunk by -DELTA lines or
columns.  If WINDOW cannot be shrunk by -DELTA lines or columns,
return the minimum value in the range DELTA..0 that can be used
for shrinking WINDOW.

Optional argument IGNORE, if non-nil, means to ignore restraints
induced by fixed size windows or the values of the variables
`window-min-height' and `window-min-width'.  The following values
have special meanings: `safe' means that in addition live windows
are allowed to get as small as `window-safe-min-height' lines and
`window-safe-min-width' columns.  `preserved' means to ignore
only restrictions induced by `window-preserve-size'.  If IGNORE
is a window, then ignore restrictions for that window only.

Optional argument PIXELWISE non-nil means interpret DELTA as
pixels.
(defalias 'window-resizable #[(window delta &optional horizontal ignore pixelwise) "\305!\306	\n\307\211\211\f&\207" [window delta horizontal ignore pixelwise window-normalize-window window--resizable nil] 9 (#$ . 55785)])
#@218 Return t if WINDOW can be resized vertically by DELTA lines.
WINDOW must be a valid window and defaults to the selected one.
For the meaning of the arguments of this function see the
doc-string of `window-resizable'.
(defalias 'window-resizable-p #[(window delta &optional horizontal ignore pixelwise) "\305!	\306V\203\307	\n\310\211\211\f&	Y\207\307	\n\310\211\211\f&	X\207" [window delta horizontal ignore pixelwise window-normalize-window 0 window--resizable nil] 9 (#$ . 57327)])
(byte-code "\300\301\302\"\210\300\303\304\"\207" [defalias window-height window-total-height window-width window-body-width] 3)
#@250 Return t if WINDOW is as high as its containing frame.
More precisely, return t if and only if the total height of
WINDOW equals the total height of the root window of WINDOW's
frame.  WINDOW must be a valid window and defaults to the
selected one.
(defalias 'window-full-height-p #[(&optional window) "\301!\302!\203\303\304!!=\207\305!\305\303!!U\207" [window window-normalize-window window-minibuffer-p frame-root-window window-frame window-pixel-height] 4 (#$ . 57957)])
#@247 Return t if WINDOW is as wide as its containing frame.
More precisely, return t if and only if the total width of WINDOW
equals the total width of the root window of WINDOW's frame.
WINDOW must be a valid window and defaults to the selected one.
(defalias 'window-full-width-p #[(&optional window) "\301!\302!\302\303!!U\207" [window window-normalize-window window-pixel-width frame-root-window] 4 (#$ . 58448)])
#@361 Return the height or width of WINDOW's text area.
WINDOW must be a live window and defaults to the selected one.

If HORIZONTAL is omitted or nil, return the height of the text
area, like `window-body-height'.  Otherwise, return the width of
the text area, like `window-body-width'.  In either case, the
optional argument PIXELWISE is passed to the functions.
(defalias 'window-body-size #[(&optional window horizontal pixelwise) "\203	\303	\n\"\207\304	\n\"\207" [horizontal window pixelwise window-body-width window-body-height] 3 (#$ . 58872)])
#@297 Return average character width for the font of FACE used in WINDOW.
WINDOW must be a live window and defaults to the selected one.

If FACE is nil or omitted, the default face is used.  If FACE is
remapped (see `face-remapping-alist'), the function returns the
information for the remapped face.
(defalias 'window-font-width #[(&optional window face) "\305\306\307\"!r\310\216\311	@\312\"\210\313 \203:\n\203\n\202\314\315\316\n!!\211\317H\211\320V\2033\f\2026\321H+\202<\322 +\207" [window save-selected-window--state face info width internal--before-with-selected-window window-normalize-window t #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord display-multi-font-p default font-info face-font 11 0 10 frame-char-width] 5 (#$ . 59429)])
#@290 Return character height for the font of FACE used in WINDOW.
WINDOW must be a live window and defaults to the selected one.

If FACE is nil or omitted, the default face is used.  If FACE is
remapped (see `face-remapping-alist'), the function returns the
information for the remapped face.
(defalias 'window-font-height #[(&optional window face) "\304\305\306\"!r\307\216\310	@\311\"\210\312 \203,\n\203\n\202\313\314\315\n!!\211\316H*\202.\317 +\207" [window save-selected-window--state face info internal--before-with-selected-window window-normalize-window t #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord display-multi-font-p default font-info face-font 3 frame-char-height] 5 (#$ . 60253)])
#@540 Return the number of characters that can be displayed on one line in WINDOW.
WINDOW must be a live window and defaults to the selected one.

The character width of FACE is used for the calculation.  If FACE
is nil or omitted, the default face is used.  If FACE is
remapped (see `face-remapping-alist'), the function uses the
remapped face.

This function is different from `window-body-width' in two
ways.  First, it accounts for the portions of the line reserved
for the continuation glyph.  Second, it accounts for the size of
the font.
(defalias 'window-max-chars-per-line #[(&optional window face) "\306\307\310\"!r\311\216\312	@\313\"\210\314\310\"\315\"\n\f\245\316 \203V\203V\317=\204V\204=\320\321\322\"\317U\204V\317=\204V\204R\320\321\323\"\317U\204V
\202X
S.\207" [window save-selected-window--state window-width face font-width ncols internal--before-with-selected-window window-normalize-window t #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord window-body-width window-font-width display-graphic-p 0 frame-parameter nil left-fringe right-fringe overflow-newline-into-fringe left-fringe-width right-fringe-width] 4 (#$ . 61030)])
#@515 Return the current scroll bar types for WINDOW.
WINDOW must be a live window and defaults to the selected one.

The return value is a cons cell (VERTICAL . HORIZONTAL) where
VERTICAL specifies the current location of the vertical scroll
bar (`left', `right' or nil), and HORIZONTAL specifies the
current location of the horizontal scroll bar (`bottom' or nil).

Unlike `window-scroll-bars', this function reports the scroll bar
type actually used, once frame defaults and `scroll-bar-mode' are
taken into account.
(defalias 'window-current-scroll-bars #[(&optional window) "\304\305\"\306\307!8\310\307!8\311\312!!\211\305=\203 	@\n\305=\203)	A\n\205/\313+B\207" [window inherited horizontal vertical window-normalize-window t 2 window-scroll-bars 5 frame-current-scroll-bars window-frame bottom] 6 (#$ . 62272)])
#@1282 Cycle through all live windows, calling FUN for each one.
FUN must specify a function with a window as its sole argument.
The optional arguments MINIBUF and ALL-FRAMES specify the set of
windows to include in the walk.

MINIBUF t means include the minibuffer window even if the
minibuffer is not active.  MINIBUF nil or omitted means include
the minibuffer window only if the minibuffer is active.  Any
other value means do not include the minibuffer window even if
the minibuffer is active.

ALL-FRAMES nil or omitted means consider all windows on the
selected frame, plus the minibuffer window if specified by the
MINIBUF argument.  If the minibuffer counts, consider all windows
on all frames that share that minibuffer too.  The following
non-nil values of ALL-FRAMES have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Anything else means consider all windows on the selected frame
and no others.

This function changes neither the order of recently selected
windows nor the buffer list.
(defalias 'walk-windows #[(fun &optional minibuf all-frames) "\306 \203\307\310 r\311\216\312\n!\203\313\314\n!\315\"\210\316\317\n#\317\211\2055\f@
!\210\fA\211\204&\317-\207" [minibuf save-selected-window--state all-frames walk-windows-window --dolist-tail-- fun window-minibuffer-p t internal--before-save-selected-window #[nil "\301!\207" [save-selected-window--state internal--after-save-selected-window] 2] framep select-window frame-first-window norecord window-list-1 nil] 5 (#$ . 63108)])
#@236 Return t if WINDOW is at SIDE of its containing frame.
WINDOW must be a valid window and defaults to the selected one.
SIDE can be any of the symbols `left', `top', `right' or
`bottom'.  The default value nil is handled like `bottom'.
(defalias 'window-at-side-p #[(&optional window side) "\303!	\304=\203\305\202)	\306=\203\307\202)	\310=\203\"\311\202)	\312>\205)\313\211\314!8\n\314\315!!8U)\207" [window side edge window-normalize-window left 0 top 1 right 2 (bottom nil) 3 window-pixel-edges frame-root-window] 6 (#$ . 64909)])
#@225 Return list of all windows on SIDE of FRAME.
FRAME must be a live frame and defaults to the selected frame.
SIDE can be any of the symbols `left', `top', `right' or
`bottom'.  The default value nil is handled like `bottom'.
(defalias 'window-at-side-list #[(&optional frame side) "\302!\303\304\305\303\306$\210	\237)\207" [frame windows window-normalize-frame nil walk-window-tree #[(window) "\303	\"\205\f\nB\211\207" [window side windows window-at-side-p] 3] nomini] 5 (#$ . 65463)])
#@45 Support function for `window-in-direction'.
(defalias 'window--in-direction-2 #[(window posn &optional horizontal) "\203\305	!\211V\203\nZ\202\306\n\307	!#)\207\310	!\211V\203-\fZ\2024\306\f\311	!#)\207" [horizontal window top posn left window-pixel-top - window-pixel-height window-pixel-left window-pixel-width] 6 (#$ . 65964)])
#@1392 Return window in DIRECTION as seen from WINDOW.
More precisely, return the nearest window in direction DIRECTION
as seen from the position of `window-point' in window WINDOW.
DIRECTION must be one of `above', `below', `left' or `right'.
WINDOW must be a live window and defaults to the selected one.

Do not return a window whose `no-other-window' parameter is
non-nil.  If the nearest window's `no-other-window' parameter is
non-nil, try to find another window in the indicated direction.
If, however, the optional argument IGNORE is non-nil, return that
window even if its `no-other-window' parameter is non-nil.

Optional argument SIGN a negative number means to use the right
or bottom edge of WINDOW as reference position instead of
`window-point'.  SIGN a positive number means to use the left or
top edge of WINDOW as reference position.

Optional argument WRAP non-nil means to wrap DIRECTION around
frame borders.  This means to return for WINDOW at the top of the
frame and DIRECTION `above' the minibuffer window if the frame
has one, and a window at the bottom of the frame otherwise.

Optional argument MINI nil means to return the minibuffer window
if and only if it is currently active.  MINI non-nil means to
return the minibuffer window even when it's not active.  However,
if WRAP is non-nil, always act as if MINI were nil.

Return nil if no suitable window can be found.
(defalias 'window-in-direction #[(direction &optional window ignore sign wrap mini) "\306\307\"	\310>\204\311\312	\"\210\313!	\314>\211\203\"\315!\202%\316!\211\317\307#\\\247\203U\320W\203U\203J\316!\321!\\S\202\232\315!\322!\\S\202\232\247\203r\320V\203r\203l\316!\202\232\315!\202\232\323\324\325!\"8 \203\216 A\206\207\326\316!\\\202\231 @\206\225\326\315!\\)!	\327=\203\250\330\n!\202\265	\331=\203\264\332\n!\202\265\333\211\"#\203\304\330\n!\202\307\332\n!$\334\211%&\334'\335\336\n\334(\205\334\307$\210%\206\345&.\207" [window direction frame hor first last window-normalize-window t (above below left right) error "Wrong direction %s" window-frame (left right) window-pixel-left window-pixel-top window-size 0 window-pixel-height window-pixel-width 2 posn-at-point window-point 1 below frame-pixel-height right frame-pixel-width -1 nil walk-window-tree #[(w) "\306!\307!=\206\307\310\311\"\203\f?\206\307
\203\351	X\203\212	\312!\\W\203\212\313=\203X\nX\203E\nV\204\200\203X\314\313\"\203X\314\315\"\204\200\315=\205\307\nY\203m\nW\204\200\205\307\314\315\"\205\307\314\313\"\205\307\n\211\202\307\313=\203\234\n\316!\\X\204\252\315=\205\307\nX\205\307\317
#\211\205\307W\204\333U\205\307\313=\203\324\nV\202\330\nW\205\307\n\211 \202\307\nX\203k\n\316!\\W\203k\320=\203.	X\203	V\204a\203.\314\321\"\203.\322 \203'\323!\202+\314\324\"\204a\325=\205\307	Y\203C	W\204a\205\307\322 \203S\323!\202W\314\324\"\205\307\314\321\"\205\307	\211\202\307\320=\203}	\312!\\X\204\213\325=\205\307	X\205\307\317
#\211\205\307W\204\274U\205\307\320=\203\265	V\202\271	W\205\307	\211 *\207" [w w-top w-left window ignore hor window-pixel-top window-pixel-left window-parameter no-other-window window-pixel-height left window-at-side-p right window-pixel-width window--in-direction-2 above top active-minibuffer-window minibuffer-window-active-p bottom below posn direction first best-edge wrap last best best-diff-2-new best-diff-2 best-edge-2 best-2] 4] sign posn-cons posn best-edge best-edge-2 best-diff-2 best best-2 best-diff-2-new mini] 6 (#$ . 66320)])
#@1336 Return a live window satisfying PREDICATE.
More precisely, cycle through all windows calling the function
PREDICATE on each one of them with the window as its sole
argument.  Return the first window for which PREDICATE returns
non-nil.  Windows are scanned starting with the window following
the selected window.  If no window satisfies PREDICATE, return
DEFAULT.

MINIBUF t means include the minibuffer window even if the
minibuffer is not active.  MINIBUF nil or omitted means include
the minibuffer window only if the minibuffer is active.  Any
other value means do not include the minibuffer window even if
the minibuffer is active.

ALL-FRAMES nil or omitted means consider all windows on the selected
frame, plus the minibuffer window if specified by the MINIBUF
argument.  If the minibuffer counts, consider all windows on all
frames that share that minibuffer too.  The following non-nil
values of ALL-FRAMES have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Anything else means consider all windows on the selected frame
and no others.
(defalias 'get-window-with-predicate #[(predicate &optional minibuf all-frames default) "\3062,\307\310\311	#	#\311\211\203)@\f\n!\203\"\312\306\n\"\210A\211\204*
0\207" [minibuf all-frames window --dolist-tail-- predicate default found window-list-1 next-window nil throw] 6 (#$ . 70048)])
(defalias 'some-window 'get-window-with-predicate)
#@907 Return the least recently used window on frames specified by ALL-FRAMES.
Return a full-width window if possible.  A minibuffer window is
never a candidate.  A dedicated window is never a candidate
unless DEDICATED is non-nil, so if all windows are dedicated, the
value is nil.  Avoid returning the selected window if possible.
Optional argument NOT-SELECTED non-nil means never return the
selected window.

The following non-nil values of the optional argument ALL-FRAMES
have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Any other value of ALL-FRAMES means consider all windows on the
selected frame and no others.
(defalias 'get-lru-window #[(&optional all-frames dedicated not-selected) "\306\211\211\211\211\307\306\310
#\306
\211\203t@
\204)\311
!\204k\2036
\312 =\204k\313
!
\312 =\204J\314
!\204\\	\203T	W\203k
\202k\203fW\203k
A\211\204*\f\206z\n-\207" [time second-best-time second-best-window best-time best-window all-frames nil window-list-1 nomini window-dedicated-p selected-window window-use-time window-full-width-p window --dolist-tail-- dedicated not-selected] 6 (#$ . 71745)])
#@816 Return the most recently used window on frames specified by ALL-FRAMES.
A minibuffer window is never a candidate.  A dedicated window is
never a candidate unless DEDICATED is non-nil, so if all windows
are dedicated, the value is nil.  Optional argument NOT-SELECTED
non-nil means never return the selected window.

The following non-nil values of the optional argument ALL-FRAMES
have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Any other value of ALL-FRAMES means consider all windows on the
selected frame and no others.
(defalias 'get-mru-window #[(&optional all-frames dedicated not-selected) "\306\211\211\307\306\310#\306\211\203E
@\311\f!\f\204$\312\f!\204>
\2030\f\313 =\204>	\203:	V\203>\f
A\211\204*\n+\207" [time best-time best-window all-frames window --dolist-tail-- nil window-list-1 nomini window-use-time window-dedicated-p selected-window dedicated not-selected] 5 (#$ . 73190)])
#@805 Return the largest window on frames specified by ALL-FRAMES.
A minibuffer window is never a candidate.  A dedicated window is
never a candidate unless DEDICATED is non-nil, so if all windows
are dedicated, the value is nil.  Optional argument NOT-SELECTED
non-nil means never return the selected window.

The following non-nil values of the optional argument ALL-FRAMES
have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Any other value of ALL-FRAMES means consider all windows on the
selected frame and no others.
(defalias 'get-largest-window #[(&optional all-frames dedicated not-selected) "\306\307\211\310\307\311#\307\211\203E
@\204 \312\f!\204>\203,\f\313 =\204>\314\f!\315\f!_\211\nV\203>\f
A\211\204*	+\207" [size best-window best-size all-frames window --dolist-tail-- 0 nil window-list-1 nomini window-dedicated-p selected-window window-pixel-height window-pixel-width dedicated not-selected] 5 (#$ . 74410)])
#@1236 Return list of all windows displaying BUFFER-OR-NAME, or nil if none.
BUFFER-OR-NAME may be a buffer or the name of an existing buffer
and defaults to the current buffer.  If the selected window displays
BUFFER-OR-NAME, it will be the first in the resulting list.

MINIBUF t means include the minibuffer window even if the
minibuffer is not active.  MINIBUF nil or omitted means include
the minibuffer window only if the minibuffer is active.  Any
other value means do not include the minibuffer window even if
the minibuffer is active.

ALL-FRAMES nil or omitted means consider all windows on the
selected frame, plus the minibuffer window if specified by the
MINIBUF argument.  If the minibuffer counts, consider all windows
on all frames that share that minibuffer too.  The following
non-nil values of ALL-FRAMES have special meanings:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Anything else means consider all windows on the selected frame
and no others.
(defalias 'get-buffer-window-list #[(&optional buffer-or-name minibuf all-frames) "\306!\307\310\311 \f#\307\211\203-@\312
!\n=\203$
	BA\211\204*	\237*\207" [buffer-or-name windows buffer minibuf all-frames window window-normalize-buffer nil window-list-1 selected-window window-buffer --dolist-tail--] 5 (#$ . 75652)])
#@63 Return t if WINDOW is the currently active minibuffer window.
(defalias 'minibuffer-window-active-p #[(window) "\301 =\207" [window active-minibuffer-window] 2 (#$ . 77232)])
#@208 Return the number of live windows on the selected frame.
The optional argument MINIBUF specifies whether the minibuffer
window shall be counted.  See `walk-windows' for the precise
meaning of this argument.
(defalias 'count-windows #[(&optional minibuf) "\301\302\"G\207" [minibuf window-list-1 nil] 3 (#$ . 77415)])
#@606 For WINDOW convert SIZE lines to pixels.
SIZE is supposed to specify a height of WINDOW in terms of text
lines.  The return value is the number of pixels specifying that
height.

WINDOW must be a valid window.  Optional argument HORIZONTAL
non-nil means convert SIZE columns to pixels.

Optional argument PIXELWISE non-nil means SIZE already specifies
pixels but may have to be adjusted to a multiple of the character
size of WINDOW's frame.  Optional argument ROUND-MAYBE non-nil
means round to the nearest multiple of the character size of
WINDOW's frame if the option `window-resize-pixelwise' is nil.
(defalias 'window--size-to-pixel #[(window size &optional horizontal pixelwise round-maybe) "\306!\307	\"\203$\f\203
\204\310	\n\"\n_\202(	\202(	\n_)\207" [window horizontal char-size pixelwise round-maybe window-resize-pixelwise window-normalize-window frame-char-size round size] 3 (#$ . 77740)])
#@41 Subroutine of `window--pixel-to-total'.
(defalias 'window--pixel-to-total-1 #[(window horizontal char-size) "\306!\307\n\"\203\246\310!\311\211\211\211	\203>\312	\n\313#\245\314]\315	\"\210Z\316	!\211\204\317V\203\212\320!\311\317	\203{\310	!\312	\n\313#\245X\203s\312	\n\313#\246\211V\203s	\f\321	!\211\204Q\315
\314\313#\210S\211\202@\306!\211\205\242\322	\n#\210\316	!\211\204\222\311-\202\306\310!	\205\305\315	\"\210\322	\n#\210\316	!\211\204\257\311))\207" [window child horizontal best-rem rem best-child window-child window-combination-p window-new-total nil window-size t 1 set-window-new-total window-next-sibling 0 window-last-child window-prev-sibling window--pixel-to-total-1 size remainder char-size] 6 (#$ . 78665)])
#@219 On FRAME assign new total window heights from pixel heights.
FRAME must be a live frame and defaults to the selected frame.

Optional argument HORIZONTAL non-nil means assign new total
window widths from pixel widths.
(defalias 'window--pixel-to-total #[(&optional frame horizontal) "\306!\307	\"\310!\311	\312#\313!\314
!=\205'
=?\205'
)\211\2052\311
	\312#
\203\224	\204\224\315\316\f\n\245\317]\"\210\316
\n\245\317]\"\210\320\f\\\n\"\321!\321
!\\Z\211\322V\203\220\f\321!\246\321
!\246Y\203\201\316\317\312#\210\202\207\316
\317\312#\210S\211\202d)\202\251\316\320\f\n\"\"\210
\203\251\316
\320\n\"\"\210\323!\204\265\324	\n#\210\325	\"-\207" [frame horizontal char-size root root-size mini window-normalize-frame frame-char-size frame-root-window window-size t minibuffer-window window-frame nil set-window-new-total 1 round window-new-total 0 window-buffer window--pixel-to-total-1 window-resize-apply-total mini-size lines] 6 (#$ . 79475)])
#@284 Reset resize values for all windows on FRAME.
FRAME defaults to the selected frame.

This function stores the current value of `window-size' applied
with argument HORIZONTAL in the new total size of all windows on
FRAME.  It also resets the new normal size of each of these
windows.
(defalias 'window--resize-reset #[(&optional frame horizontal) "\302\303\304!!	\"\207" [frame horizontal window--resize-reset-1 frame-root-window window-normalize-frame] 4 (#$ . 80481)])
#@46 Internal function of `window--resize-reset'.
(defalias 'window--resize-reset-1 #[(window horizontal) "\302\303	\304#\"\210\305\303	\"\"\210\306!\210\307!\203\"\310\307!	\"\210\311!\205.\310\311!	\"\207" [window horizontal set-window-new-pixel window-size t set-window-new-total set-window-new-normal window-child window--resize-reset-1 window-right] 6 (#$ . 80958)])
#@165 Resize minibuffer window WINDOW by DELTA pixels.
If WINDOW cannot be resized by DELTA pixels make it as large (or
as small) as possible, but don't signal an error.
(defalias 'window--resize-mini-window #[(window delta) "\306!\205a\307!\310	!\311!\311\n!\312\n\313\211\314$Z
\\\315X\2030\316\307!!Z\2028
\fV\2038\f
\315U?\205`\317	!\210\320\n
[\313\211\314%\210\321
\\\"\210\322!\205`\323	!\210\324	!,\207" [window frame root height min-delta delta window-minibuffer-p window-frame frame-root-window window-pixel-height window-min-size nil t 0 frame-char-height window--resize-reset window--resize-this-window set-window-new-pixel resize-mini-window-internal window--pixel-to-total run-window-configuration-change-hook] 6 (#$ . 81343)])
#@159 Return t when a window on FRAME shall be resized vertically.
Optional argument HORIZONTAL non-nil means return t when a window
shall be resized horizontally.
(defalias 'window--resize-apply-p #[(frame &optional horizontal) "\3012\f\302\303\304#\210\3050\207" [frame apply walk-window-tree #[(window) "\302!\303	\304#U?\205\305\306\304\"\207" [window horizontal window-new-pixel window-size t throw apply] 5] t nil] 4 (#$ . 82107)])
#@1323 Resize WINDOW vertically by DELTA lines.
WINDOW can be an arbitrary window and defaults to the selected
one.  An attempt to resize the root window of a frame will raise
an error though.

DELTA a positive number means WINDOW shall be enlarged by DELTA
lines.  DELTA negative means WINDOW shall be shrunk by -DELTA
lines.

Optional argument HORIZONTAL non-nil means resize WINDOW
horizontally by DELTA columns.  In this case a positive DELTA
means enlarge WINDOW by DELTA columns.  DELTA negative means
WINDOW shall be shrunk by -DELTA columns.

Optional argument IGNORE, if non-nil, means to ignore restraints
induced by fixed size windows or the values of the variables
`window-min-height' and `window-min-width'.  The following values
have special meanings: `safe' means that in addition live windows
are allowed to get as small as `window-safe-min-height' lines and
`window-safe-min-width' columns.  `preserved' means to ignore
only restrictions induced by `window-preserve-size'.  If IGNORE
is a window, then ignore restrictions for that window only.

Optional argument PIXELWISE non-nil means resize WINDOW by DELTA
pixels.

This function resizes other windows proportionally and never
deletes any windows.  If you want to move only the low (right)
edge of WINDOW consider using `adjust-window-trailing-edge'
instead.
(defalias 'window-resize #[(window delta &optional horizontal ignore pixelwise) "\306!\307!\302	!\310\311\f
'\312%\313	!=\203%\314\315!\202\316!\203<
\2035\314\317!\202\320\f\"\202
\204b\321!\203b\307\n!	=\203b(\203Z\n\322 =\203b\320\n\f[\"\202\323\f
)\310\211\211\312&\204\214)\204\324\211)\203\323\f
)\310\211\211\312&\203\325	
\"\210\326\f
)\312%\210*\204\360\327
\"\203\360\330!\206\257\331!\211\203\360\332\f[
)\312%\203\360\333\f!\334\335!
\312#\245+\326\f[
\310\312%\210\336\337
\"+\\\"\210\336\337
\"+Z\"\210)\202\370\340\f
)$\210\341	
\"\205\342	
\"\203\343	
\"\210\344	!\202\314\345\"\202\314\346\"+\207" [window frame minibuffer-window sibling delta horizontal window-normalize-window window-frame nil window--size-to-pixel t frame-root-window error "Cannot resize the root window of a frame" window-minibuffer-p "Cannot resize minibuffer window horizontally" window--resize-mini-window window-full-height-p active-minibuffer-window window--resizable-p preserved window--resize-reset window--resize-this-window window-combined-p window-right window-left window-sizable-p float window-size window-parent set-window-new-normal window-normal-size window--resize-siblings window--resize-apply-p window-resize-apply window--pixel-to-total run-window-configuration-change-hook "Failed to apply resizing %s" "Cannot resize window %s" pixelwise resize-mini-windows ignore window-combination-resize normal-delta] 9 (#$ . 82553)])
#@314 Resize WINDOW vertically if it is resizable by DELTA lines.
This function is like `window-resize' but does not signal an
error when WINDOW cannot be resized.  For the meaning of the
optional arguments see the documentation of `window-resize'.

Optional argument PIXELWISE non-nil means interpret DELTA as
pixels.
(defalias 'window-resize-no-error #[(window delta &optional horizontal ignore pixelwise) "\305	\n\306\211\211\f&\205\307	\n\f%\207" [window delta horizontal ignore pixelwise window--resizable-p nil window-resize] 9 (#$ . 85395)])
#@65 Return non-nil if WINDOW shall be skipped by resizing routines.
(defalias 'window--resize-child-windows-skip-p #[(window) "\301!\302>\207" [window window-new-normal (ignore stuck skip)] 2 (#$ . 85951)])
#@524 Recursively set new normal height of child windows of window PARENT.
HORIZONTAL non-nil means set the new normal width of these
windows.  WINDOW specifies a child window of PARENT that has been
resized by THIS-DELTA lines (columns).

Optional argument TRAIL either `before' or `after' means set values
only for windows before or after WINDOW.  Optional argument
OTHER-DELTA, a number, specifies that this many lines (columns)
have been obtained from (or returned to) an ancestor window of
PARENT in order to resize WINDOW.
(defalias 'window--resize-child-windows-normal #[(parent horizontal window this-delta &optional trail other-delta) "[\306	\n\307#U\203\310U\203\311	\n\"[\202\"\312!\306\f\n\307#\245\313\f!\314\315=\203_	=\203F\316=\202U\204U\311\n\"\\\317!\211\2046\313\f!\315=\203\250	=\203\316=\202\236\204\236\311\n\"\320\321\211\245
_Z\322]^\"\210)\317!\211\204o\247\203\373\312\306\f\n\307#!\306\f\n\307#\\\245\313\f!\315=\203\373	=\203\335\316=\202\361\204\361\320\323\324!
_\325]^\"\210\317!\211\204\315\320	\310\313\f!\211\2038	=\204.\324!\247\204%\311\n\"\\\202.\324!\\\317!\211\204	\326\327Z\330]^)\",\207" [this-delta window horizontal other-delta parent delta-normal window-size t 0 window-normal-size float window-child 0.0 after before window-right set-window-new-normal 1.0 0.0 1.0 window-new-normal 0.0 1.0 1.0 0.0 sub parent-normal trail skip old-normal sum] 7 (#$ . 86162)])
#@1113 Resize child windows of window PARENT vertically by DELTA pixels.
PARENT must be a vertically combined internal window.

Optional argument HORIZONTAL non-nil means resize child windows
of PARENT horizontally by DELTA pixels.  In this case PARENT must
be a horizontally combined internal window.

WINDOW, if specified, must denote a child window of PARENT that
is resized by DELTA pixels.

The optional argument IGNORE has the same meaning as for
`window-resizable'.

Optional arguments TRAIL and EDGE, when non-nil, restrict the set
of windows that shall be resized.  If TRAIL equals `before',
resize only windows on the left or above EDGE.  If TRAIL equals
`after', resize only windows on the right or below EDGE.  Also,
preferably only resize windows adjacent to EDGE.

If the optional argument CHAR-SIZE is a positive integer, it specifies
the number of pixels by which windows are incrementally resized.
If CHAR-SIZE is nil, this means to use the value of
`frame-char-height' or `frame-char-width' of WINDOW's frame.

Return the symbol `normalized' if new normal sizes have been
already set by this routine.
(defalias 'window--resize-child-windows #[(parent delta &optional horizontal window ignore trail edge char-size) "\306!\307!\310\311#\f\\'\206#(\203\312\202#\313)\"'\314\211*+\314\211,-.\203/\315>\203	*\316*!\203n/\317=\203W\320\316*!!\203e/\321=\203n\320*!\203n\316*!*\202@*\203\203\227/\317=\203\215\322*!\323*!\\.U\202\264\322*!.U\202\264/\317=\203\255\324*!\325*!\\.U\202\264\324*!.U\203\326*\f\"\311%\203\327*\f\"\311/.&\210)\203\330*!=\203\331*\332\333*!!
\245\"\210\331)\334)\"\335*!\334*\"ZZ\"\210\202\336*\337/\f&\210\340\202\n\211*\203\213\320*!\204\201\"\204:\341*\"#\203:\331*\342\"\204\201\f\337W\203f\331*\343*\"/\311\314\311&\332\310*\311#!
\245\334*\"ZB\"\210\202\201\f\337V\203\201\331*\332\310*\311#!
\245\334*\"Z\"\210\344*!\211*\204\f\337W\203.\311++\203\245\f\337U\204\245\n*\314+0,*\203\340\335*!:\203\326\335*!@\337X\204\326\335*!A,V\203\326*+\335*!A,\344*!\211*\204\256+\203\224\335+!@'^\f[^-\f-\\\345+-[\311#\210\331+\335+!@-U\203\346\202)\335+!@-Z\332\333+!!
\245\334+\"ZB\"\210\202\224\f\337V\203\245\311++\203\245\f\337U\204\245\n*\314+1,*\203w\335*!\247\203m\335*!,W\203m*+\335*!,\344*!\211*\204Q+\2037\f'^-\f-Z\345+-\311#\210\331+\332\333+!!
\245\334+\"Z\"\210\2027+\205\n\211*\205\335*!:\204\301\335*!\247\203\306\331*!\210\335*!\342=\204\366\333*!\310*\311#Z\211\337U\203\346/\203\365\327*\f\"\314/.&\210)\344*!\211*\204\261\314.\207" [parent first last horizontal delta parent-total window-child window-last-child window-size t 1 frame-char-size nil (before after) window-right before window--resize-child-windows-skip-p after window-pixel-left window-pixel-width window-pixel-top window-pixel-height window-sizable-p window--resize-this-window window-parent set-window-new-normal float window-new-pixel window-normal-size window-new-normal window--resize-child-windows-normal 0 normalized window-size-fixed-p ignore window-min-delta window-left set-window-new-pixel skip char-size window-resize-pixelwise window sub best-window best-value best-delta edge trail most-negative-fixnum most-positive-fixnum] 11 (#$ . 87711)])
#@619 Resize other windows when WINDOW is resized vertically by DELTA pixels.
Optional argument HORIZONTAL non-nil means resize other windows
when WINDOW is resized horizontally by DELTA pixels.  WINDOW
itself is not resized by this function.

The optional argument IGNORE has the same meaning as for
`window-resizable'.

Optional arguments TRAIL and EDGE, when non-nil, refine the set
of windows that shall be resized.  If TRAIL equals `before',
resize only windows on the left or above EDGE.  If TRAIL equals
`after', resize only windows on the right or below EDGE.  Also,
preferably only resize windows adjacent to EDGE.
(defalias 'window--resize-siblings #[(window delta &optional horizontal ignore trail edge char-size) "\306!\205\f\306!\307	!\310\n\"\203\322\f\311=\312\211\n\203W\n=\2036\313\n\314\"\210\f\315=\202O\203C\313\n\314\"\210\202O\316\n\f#\204O\317\320\n!\211\204#[\321\317#U\203u\203o\202\204\322\202\204\323\f\f\317\312\317&Z\211\322U\204\226\324	
\325#\210\322U\203\253\326	\f
&\210\202\316\327	[\f\f&\330=\204\313\326	\f
&\210
+\202\365\324	\325#\210\n\203\365\n=\204\355\331\n\f\317%\210\320\n!\211\204\335\322U?\205\332	\f\f&*\207" [window parent sub horizontal trail other-delta window-parent window-child window-combined-p after nil set-window-new-normal ignore before window-size-fixed-p t window-right window-size 0 window--resizable set-window-new-pixel add window--resize-child-windows-normal window--resize-child-windows normalized window--resize-this-window window--resize-siblings this-delta skip delta edge char-size] 10 (#$ . 91131)])
#@1182 Resize WINDOW vertically by DELTA pixels.
Optional argument HORIZONTAL non-nil means resize WINDOW
horizontally by DELTA pixels.

The optional argument IGNORE has the same meaning as for
`window-resizable'.  Optional argument ADD non-nil means add
DELTA to the new total size of WINDOW.

Optional arguments TRAIL and EDGE, when non-nil, refine the set
of windows that shall be resized.  If TRAIL equals `before',
resize only windows on the left or above EDGE.  If TRAIL equals
`after', resize only windows on the right or below EDGE.  Also,
preferably only resize windows adjacent to EDGE.

If the optional argument CHAR-SIZE is a positive integer, it specifies
the number of pixels by which windows are incrementally resized.
If CHAR-SIZE is nil, this means to use the value of
`frame-char-height' or `frame-char-width' of WINDOW's frame.

This function recursively resizes WINDOW's child windows to fit the
new size.  Make sure that WINDOW is `window--resizable' before
calling this function.  Note that this function does not resize
siblings of WINDOW or WINDOW's parent window.  You have to
eventually call `window-resize-apply' in order to make resizing
actually take effect.
(defalias 'window--resize-this-window #[(window delta &optional horizontal ignore add trail edge char-size) "\203\n\306	\n\307#\210\310	!\211?\206G\311\f\"\203+\312	\n\f\313
&\202G\205G\314\n\f
\307&\210\315!\211\204/\313)\207" [add window delta sub horizontal ignore set-window-new-pixel t window-child window-combined-p window--resize-child-windows nil window--resize-this-window window-right trail edge char-size] 10 (#$ . 92814)])
#@393 Resize root window WINDOW vertically by DELTA lines.
HORIZONTAL non-nil means resize root window WINDOW horizontally
by DELTA columns.

IGNORE non-nil means ignore any restrictions imposed by fixed
size windows, `window-min-height' or `window-min-width' settings.

This function is only called by the frame resizing routines.  It
resizes windows proportionally and never deletes any windows.
(defalias 'window--resize-root-window #[(window delta horizontal ignore pixelwise) "\306!\2052	\247\2052\n\203	\202\307	#\310\f
\311%\2051\312\313!\"\210\314\f
\311%)\207" [window delta pixelwise horizontal pixel-delta ignore windowp window--size-to-pixel window-sizable-p t window--resize-reset window-frame window--resize-this-window] 6 (#$ . 94464)])
#@512 Resize root window WINDOW vertically by DELTA lines.
If DELTA is less than zero and we can't shrink WINDOW by DELTA
lines, shrink it as much as possible.  If DELTA is greater than
zero, this function can resize fixed-size windows in order to
recover the necessary lines.  Return the number of lines that
were recovered.

Third argument PIXELWISE non-nil means to interpret DELTA as
pixels and return the number of pixels that were recovered.

This function is called by the minibuffer window resizing
routines.
(defalias 'window--resize-root-window-vertically #[(window delta pixelwise) "\306!\n\203\f\202\247\203\307	!_\202\310\311\f\310U\204m\f\310W\203O\312\f\311\211\n%\313	!\210\314\f\311
\315\316\317!\320!\\&\210\321\322	\315#\210\202m\f\310V\203m\313	!\210\312\f\311\211\n%\204e\315\314\f\311
\315%\210\n\203u\f\202z\f\307	!\245+\207" [window frame pixelwise delta pixel-delta ignore window-frame frame-char-height 0 nil window-sizable window--resize-reset window--resize-this-window t before window-pixel-top window-pixel-height walk-window-tree #[(window) "\301\302\"\207" [window set-window-new-normal ignore] 3]] 10 (#$ . 95234)])
#@562 Assert that all windows on FRAME are large enough.
If necessary and possible, make sure that every window on frame
FRAME has its minimum height.  Optional argument HORIZONTAL
non-nil means to make sure that every window on frame FRAME has
its minimum width.  The minimum height/width of a window is the
respective value returned by `window-min-size' for that window.

Return t if all windows were resized appropriately.  Return nil
if at least one window could not be resized as requested, which
may happen when the FRAME is not large enough to accommodate it.
(defalias 'window--sanitize-window-sizes #[(frame horizontal) "\301\302\303!\210)\207" [value t walk-window-tree #[(window) "\304	\305\306$\307	\306#Z\211\310V\205*\311\n	\305\306%\203'\312\n	\305\306%\202*\305\211)\207" [window horizontal delta value window-min-size nil t window-size 0 window-resizable-p window-resize] 7]] 2 (#$ . 96415)])
#@522 Move WINDOW's bottom edge by DELTA lines.
Optional argument HORIZONTAL non-nil means move WINDOW's right
edge by DELTA columns.  WINDOW must be a valid window and
defaults to the selected one.

Optional argument PIXELWISE non-nil means interpret DELTA as
number of pixels.

If DELTA is greater than zero, move the edge downwards or to the
right.  If DELTA is less than zero, move the edge upwards or to
the left.  If the edge can't be moved by DELTA lines or columns,
move it as far as possible in the desired direction.
(defalias 'adjust-window-trailing-edge #[(window delta &optional horizontal pixelwise) "\306!\307!\302	!\310\211\310\21112\310\21134\31056\2043\31167\3128\"_7\3138\"\203A\314!\204I\315!\211\2043\204}8\204}\307\n!	=\203}\316\n!A@\317\316!8U\203}9\203t\n\320 =\203}\321\n7[\"\202F\211\203\213\314!\211\204\2348\203\226\322\323!\202F\322\324!\202F\f\f\203\340\325\f8\"\204\3027\326W\203\340\327\f8\311#\330\f8\310\311$X\203\340\331\f!\206\333\315\f!\211\203\330\313\f8\"\203\310\331\f!\211\204\242\f\2049\3325
\211\203%\325\f8\332#\204\327\f8\311#\330\f8\332\311$X\203%\331\f!\206 \315\f!\211\203\313\f8\"\203
\331\f!\211\204\355\f\20498\2035\322\333!\210\2029\322\334!\2101\203~\3258\"\204`7\326V\203~\3278\311#\3308\332\311$X\203~\314!\206y\315!\211\203v\3138\"\203f\314!\211\204@\204\330\33251\211\203\304\3258\332#\204\246\3278\311#\3308\332\311$X\203\304\314!\206\277\315!\211\203\274\3138\"\203\254\314!\211\204\214\204\3308\203\324\322\335!\210\202\330\322\336!\2107\326V\203|\337\f\32685\340\3106&4\3417[85\342\3106&347W\20437[V\20343[^77\326U\204\343	8\"\210\344\f785\340\310\2116&\2112\326U\204_\345\f285\311\3428\203U\346\f!\347\f!\\\202\\\350\f!\351\f!\\&\210\352\f785\3408\203s\346!\202v\350!&\210\2027\326W\203\337\32685\342\3106&4\341\f785\340\3106&347[W\204\26337V\203\2734[3]77\326U\204\343	8\"\210\3447[85\342\310\2116&\2112\326U\204\373\345285\311\3408\203\365\346!\202\370\350!&\210\3527[85\3428\203\346\f!\347\f!\\\202\350\f!\351\f!\\&\2107\326U?\205F\353	8\"\205F\354	8\"\203B\355	8\"\210\356	!\202F\357\360\".\n\207" [window frame minibuffer-window right left first-left window-normalize-window window-frame nil t frame-char-size window-combined-p window-right window-parent window-pixel-edges 3 active-minibuffer-window window--resize-mini-window user-error "No window on the right of this one" "No window below this one" window-size-fixed-p 0 window-size window-min-size window-left preserved "No resizable window on the left of this one" "No resizable window above this one" "No resizable window on the right of this one" "No resizable window below this one" window--max-delta-1 after window--min-delta-1 before window--resize-reset window--resizable window--resize-this-window window-pixel-left window-pixel-width window-pixel-top window-pixel-height window--resize-siblings window--resize-apply-p window-resize-apply window--pixel-to-total run-window-configuration-change-hook error "Failed adjusting window %s" first-right this-delta min-delta max-delta ignore pixelwise delta horizontal resize-mini-windows] 11 (#$ . 97337)])
#@292 Make the selected window DELTA lines taller.
Interactively, if no argument is given, make the selected window
one line taller.  If optional argument HORIZONTAL is non-nil,
make selected window wider by DELTA columns.  If DELTA is
negative, shrink selected window by -DELTA lines or columns.
(defalias 'enlarge-window #[(delta &optional horizontal) "\300 \305\306	\"\203\307\306	\"\210\n\310U\206\251\311\306	\"\203\"\312\313!\202\251\314 \203<	\2031\312\315!\202\251\316\317 \n\320 _\"\202\251	\204]\321 \203]\322!\323 =\203]\204]\316\n[\320 _\"\202\251\324\306\n	#\203m\325\306\n	#\202\251\324\306\n	\326$\203\325\306\n	\326$\202\251\f	\203\210\327\202\211\330=\203\223\312\331!\202\251\325\306\n\310V\203\242\332\306	\"\202\247\333\306	\"[	#)\207" [minibuffer-window horizontal delta resize-mini-windows this-command window-preserved-size nil window-preserve-size 0 window-size-fixed-p user-error "Selected window has fixed size" window-minibuffer-p "Cannot resize minibuffer window horizontally" window--resize-mini-window selected-window frame-char-height window-full-height-p window-frame selected-frame window--resizable-p window-resize preserved enlarge-window-horizontally enlarge-window "Cannot enlarge selected window" window-max-delta window-min-delta] 5 (#$ . 100681) "p"])
#@298 Make the selected window DELTA lines smaller.
Interactively, if no argument is given, make the selected window
one line smaller.  If optional argument HORIZONTAL is non-nil,
make selected window narrower by DELTA columns.  If DELTA is
negative, enlarge selected window by -DELTA lines or columns.
(defalias 'shrink-window #[(delta &optional horizontal) "\300 \305\306	\"\203\307\306	\"\210\n\310U\206\255\311\306	\"\203\"\312\313!\202\255\314 \203=	\2031\312\315!\202\255\316\317 \n[\320 _\"\202\255	\204]\321 \203]\322!\323 =\203]\204]\316\n\320 _\"\202\255\324\306\n[	#\203o\325\306\n[	#\202\255\324\306\n[	\326$\203\203\325\306\n[	\326$\202\255\f	\203\214\327\202\215\330=\203\227\312\331!\202\255\325\306\n\310V\203\247\332\306	\"[\202\253\333\306	\"	#)\207" [minibuffer-window horizontal delta resize-mini-windows this-command window-preserved-size nil window-preserve-size 0 window-size-fixed-p user-error "Selected window has fixed size" window-minibuffer-p "Cannot resize minibuffer window horizontally" window--resize-mini-window selected-window frame-char-height window-full-height-p window-frame selected-frame window--resizable-p window-resize preserved shrink-window-horizontally shrink-window "Cannot shrink selected window" window-min-delta window-max-delta] 5 (#$ . 102003) "p"])
#@224 Maximize WINDOW.
Make WINDOW as large as possible without deleting any windows.
WINDOW must be a valid window and defaults to the selected one.

If the option `window-resize-pixelwise' is non-nil maximize
WINDOW pixelwise.
(defalias 'maximize-window #[(&optional window) "\302!\303\304\305\211\211\211\211	&\305\211	%\210\303\304\306\305\211\211\211	&\306\305	%\207" [window window-resize-pixelwise window-normalize-window window-resize window-max-delta nil t] 10 (#$ . 103334) nil])
#@224 Minimize WINDOW.
Make WINDOW as small as possible without deleting any windows.
WINDOW must be a valid window and defaults to the selected one.

If the option `window-resize-pixelwise' is non-nil minimize
WINDOW pixelwise.
(defalias 'minimize-window #[(&optional window) "\302!\303\304\305\211\211\211\211	&[\305\211	%\210\303\304\306\305\211\211\211	&[\306\305	%\207" [window window-resize-pixelwise window-normalize-window window-resize window-min-delta nil t] 10 (#$ . 103833) nil])
#@1065 Return a list of the edge distances of WINDOW.
WINDOW must be a valid window and defaults to the selected one.
The list returned has the form (LEFT TOP RIGHT BOTTOM).

If the optional argument BODY is nil, this means to return the
edges corresponding to the total size of WINDOW.  BODY non-nil
means to return the edges of WINDOW's body (aka text area).  If
BODY is non-nil, WINDOW must specify a live window.

Optional argument ABSOLUTE nil means to return edges relative to
the position of WINDOW's native frame.  ABSOLUTE non-nil means to
return coordinates relative to the origin - the position (0, 0) -
of FRAME's display.  On non-graphical systems this argument has
no effect.

Optional argument PIXELWISE nil means to return the coordinates
in terms of the canonical character width and height of WINDOW's
frame, rounded if necessary.  PIXELWISE non-nil means to return
the coordinates in pixels where the values for RIGHT and BOTTOM
are one more than the actual value of these edges.  Note that if
ABSOLUTE is non-nil, PIXELWISE is implicitly non-nil too.
(defalias 'window-edges #[(&optional window body absolute pixelwise) "\306	\"\307!\310\n!\311\n!\312\n!\"\203\"\313!\\\202)\314!\f\245\\	\205S\315\313!\316!@\317=\203C\320!\202D\321\322!@\323!@\206P\321\f_%#\"\203b\324!\\\202i\325!
\245\\$	\205x\315\324!\326!#%\"\203\207\327!\202\212\330!\\&	\205\230#\331\332\"\\'$\"\203\247\333!\202\252\334!\\(	\205\270%\335\332\"\\)\336\211*+,\203\n\337\n\340\"\211 @* A@-	\203\361#*\\%-\\'*\\)-\\F\202*\\$-\\&*\\(-\\F+\202D	\203;\"\203#%')F\202D#\f\245%
\245\315'\f\341#\f\245\315)
\341#
\245F\202D$&(F.\207" [window body frame border-width char-width char-height window-normalize-window window-frame frame-border-width frame-char-width frame-char-height window-pixel-left window-left-column + window-current-scroll-bars left window-scroll-bar-width 0 window-fringes window-margins window-pixel-top window-top-line window-header-line-height window-pixel-width window-total-width window-body-width t window-pixel-height window-total-height window-body-height nil frame-edges native-edges -1 pixelwise left-body top top-body right right-body bottom bottom-body left-off right-off absolute top-off] 8 (#$ . 104335)])
#@135 Return a list of the edge coordinates of WINDOW's body.
The return value is that of `window-edges' called with argument
BODY non-nil.
(defalias 'window-body-edges #[(&optional window) "\301\302\"\207" [window window-edges t] 3 (#$ . 106671)])
(defalias 'window-inside-edges 'window-body-edges)
#@139 Return a list of the edge pixel coordinates of WINDOW.
The return value is that of `window-edges' called with argument
PIXELWISE non-nil.
(defalias 'window-pixel-edges #[(&optional window) "\301\302\211\303$\207" [window window-edges nil t] 5 (#$ . 106973)])
#@156 Return a list of the edge pixel coordinates of WINDOW's body.
The return value is that of `window-edges' called with arguments
BODY and PIXELWISE non-nil.
(defalias 'window-body-pixel-edges #[(&optional window) "\301\302\303\302$\207" [window window-edges t nil] 5 (#$ . 107240)])
(defalias 'window-inside-pixel-edges 'window-body-pixel-edges)
#@138 Return a list of the edge pixel coordinates of WINDOW.
The return value is that of `window-edges' called with argument
ABSOLUTE non-nil.
(defalias 'window-absolute-pixel-edges #[(&optional window) "\301\302\303\211$\207" [window window-edges nil t] 5 (#$ . 107592)])
#@160 Return a list of the edge pixel coordinates of WINDOW's text area.
The return value is that of `window-edges' called with arguments
BODY and ABSOLUTE non-nil.
(defalias 'window-absolute-body-pixel-edges #[(&optional window) "\301\302\211\211$\207" [window window-edges t] 5 (#$ . 107867)])
(defalias 'window-inside-absolute-pixel-edges 'window-absolute-body-pixel-edges)
#@496 Return display coordinates of POSITION in WINDOW.
If the buffer position POSITION is visible in window WINDOW,
return the display coordinates of the upper/left corner of the
glyph at POSITION.  The return value is a cons of the X- and
Y-coordinates of that corner, relative to an origin at (0, 0) of
WINDOW's display.  Return nil if POSITION is not visible in
WINDOW.

WINDOW must be a live window and defaults to the selected window.
POSITION defaults to the value of `window-point' of WINDOW.
(defalias 'window-absolute-pixel-position #[(&optional position window) "\304\305\"\306	\206
\307!\305#\211\205'\310!\211@\n@\\A@\nA@\\)B*\207" [window position pos-in-window edges window-normalize-window t pos-visible-in-window-p window-point window-absolute-body-pixel-edges] 5 (#$ . 108246)])
#@59 Return non-nil if WINDOW is the root window of its frame.
(defalias 'frame-root-window-p #[(window) "\301!=\207" [window frame-root-window] 3 (#$ . 109053)])
#@210 Return window subtree rooted at WINDOW.
Optional argument NEXT non-nil means include WINDOW's right
siblings in the return value.

See the documentation of `window-tree' for a description of the
return value.
(defalias 'window--subtree #[(window &optional next) "\303	\203@\304	!\203\305\306	!\307\304	!\305\"BB\2021\310	!\2030\303\306	!\307\310	!\305\"BB\2021	B\n\205;\311	!\211\204\237)\207" [list window next nil window-top-child t window-edges window--subtree window-left-child window-next-sibling] 6 (#$ . 109220)])
#@761 Return the window tree of frame FRAME.
FRAME must be a live frame and defaults to the selected frame.
The return value is a list of the form (ROOT MINI), where ROOT
represents the window tree of the frame's root window, and MINI
is the frame's minibuffer window.

If the root window is not split, ROOT is the root window itself.
Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil
for a horizontal split, and t for a vertical split.  EDGES gives
the combined size and position of the child windows in the split,
and the rest of the elements are the child windows in the split.
Each of the child windows may again be a window or a list
representing a window split, and so on.  EDGES is a list (LEFT
TOP RIGHT BOTTOM) as returned by `window-edges'.
(defalias 'window-tree #[(&optional frame) "\301!\302\303!\304\"\207" [frame window-normalize-frame window--subtree frame-root-window t] 3 (#$ . 109762)])
#@886 Select another window in cyclic ordering of windows.
COUNT specifies the number of windows to skip, starting with the
selected window, before making the selection.  If COUNT is
positive, skip COUNT windows forwards.  If COUNT is negative,
skip -COUNT windows backwards.  COUNT zero means do not skip any
window, so select the selected window.  In an interactive call,
COUNT is the numeric prefix argument.  Return nil.

If the `other-window' parameter of the selected window is a
function and `ignore-window-parameters' is nil, call that
function with the arguments COUNT and ALL-FRAMES.

This function does not select a window whose `no-other-window'
window parameter is non-nil.

This function uses `next-window' for finding the window to
select.  The argument ALL-FRAMES has the same meaning as in
`next-window', but the MINIBUF argument of `next-window' is
always effectively nil.
(defalias 'other-window #[(count &optional all-frames) "\306 	?\205\f\307\310\"\311\211\312\n!\203\n
\"\202\235\3132\235
\314V\203]\315\311#\211=\203D
\fU\203#\316\313\311\"\210\202#\307\317\"\203V\204#
\202#
S\211\202$
\314W\203\227\320\311#\211=\203~
\fU\203]\316\313\311\"\210\202]\307\317\"\203\220\204]
\202]
T\211\202^\321!\210\3110,\207" [window ignore-window-parameters function old-window old-count count selected-window window-parameter other-window nil functionp exit 0 next-window throw no-other-window previous-window select-window all-frames] 5 (#$ . 110687) "p"])
#@997 Return non-nil if the selected window is the only window.
Optional arg NOMINI non-nil means don't count the minibuffer
even if it is active.  Otherwise, the minibuffer is counted
when it is active.

Optional argument ALL-FRAMES specifies the set of frames to
consider, see also `next-window'.  ALL-FRAMES nil or omitted
means consider windows on the selected frame only, plus the
minibuffer window if specified by the NOMINI argument.  If the
minibuffer counts, consider all windows on all frames that share
that minibuffer too.  The remaining non-nil values of ALL-FRAMES
with a special meaning are:

- t means consider all windows on all existing frames.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Anything else means consider all windows on the selected frame
and no others.
(defalias 'one-window-p #[(&optional nomini all-frames) "\303 	\203\304 =\203\305!\305	\205\306\n#)=\207" [base-window nomini all-frames selected-window minibuffer-window next-window arg] 5 (#$ . 112209)])
#@186 Return t if WINDOW can be safely deleted from its frame.
WINDOW must be a valid window and defaults to the selected one.
Return `frame' if deleting WINDOW should also delete its frame.
(defalias 'window-deletable-p #[(&optional window) "\306!	\204\307\310\"\311=\204\307\312\"\203\313!\314!\315!\203v\n\316\n\317\"=\206n\3032^\320 \321\211\205\\\f@\211\n=\204T\314\322!!\n=\203T\323\303\311\"\210\fA\211\204<\321*0\206n\324 \211\205m\n\314
!=)?\205\204\302\202\204	\204\203\325\n!=?\205\204\311)\207" [window ignore-window-parameters frame other --dolist-tail-- minibuf window-normalize-window window-parameter delete-window t window-atom window-atom-root window-frame frame-root-window-p next-frame 0 frame-list nil minibuffer-window throw active-minibuffer-window window--major-non-side-window] 5 (#$ . 113430)])
#@66 Return t if WINDOW is either ROOT or a member of ROOT's subtree.
(defalias 'window--in-subtree-p #[(window root) "	=\206+\303!\3042*\n\205)\n	=\203 \305\304\306\"\210\202\303\n!\211\204\3070)\207" [window root parent window-parent done throw t nil] 4 (#$ . 114286)])
#@696 Delete WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Return nil.

If the variable `ignore-window-parameters' is non-nil or the
`delete-window' parameter of WINDOW equals t, do not process any
parameters of WINDOW.  Otherwise, if the `delete-window'
parameter of WINDOW specifies a function, call that function with
WINDOW as its sole argument and return the value returned by that
function.

Otherwise, if WINDOW is part of an atomic window, call
`delete-window' with the root of the atomic window as its
argument.  Signal an error if WINDOW is either the only window on
its frame, the last non-side window, or part of an atomic window
that is its frame's root window.
(defalias 'delete-window #[(&optional window) "\306!\307!\310\311\"\312!\313\314	!\210\3152%
\204z\n\316=\204z\317\n!\2035\320\315\n!\"\210\202z\310\321\"\203c\322!\211\203c\f=\204c\f\323	!=\203Y\324\325!\210\202z\320\315\311\f!\"\210\202z\204n\324\326!\210\202z\327	!=\203z\324\330!\210\331!,\332,\316#-\333\334	!\".\335!\206\230\336!/\337	,\"\2100\204\326/\203\326\340/-,\313\316%\203\326\341/-,\313\316%\210\342/\343/,\"\343,\"\\\"\210\202\375\344-[,\313\211\211\316\211&\203\363\345-[,#\210\202\375\345-[,\316$\210\346!\210\347	,\"\210.\203\310\334	!\350\"\203\351\352	\"\210\353	!\210\314	!\210,\3130,\207" [window frame function parent atom-root ignore-window-parameters window-normalize-window window-frame window-parameter delete-window window-parent nil window--check done t functionp throw window-atom window-atom-root frame-root-window error "Root of atomic window is root window of its frame" "Attempt to delete minibuffer or sole ordinary window" window--major-non-side-window "Attempt to delete last non-side window" window-left-child window-size window--in-subtree-p frame-selected-window window-left window-right window--resize-reset window-sizable-p window--resize-this-window set-window-new-normal window-normal-size window--resizable-p window--resize-siblings delete-window-internal window--pixel-to-total no-other-window other-window -1 run-window-configuration-change-hook horizontal size frame-selected sibling window-combination-resize] 9 (#$ . 114572) nil])
#@727 Make WINDOW fill its frame.
WINDOW must be a valid window and defaults to the selected one.
Return nil.

If the variable `ignore-window-parameters' is non-nil or the
`delete-other-windows' parameter of WINDOW equals t, do not
process any parameters of WINDOW.  Otherwise, if the
`delete-other-windows' parameter of WINDOW specifies a function,
call that function with WINDOW as its sole argument and return
the value returned by that function.

Otherwise, if WINDOW is part of an atomic window, call this
function with the root of the atomic window as its argument.  If
WINDOW is a non-side window, make WINDOW the only non-side window
on the frame.  Side windows are not deleted.  If WINDOW is a side
window signal an error.
(defalias 'delete-other-windows #[(&optional window) "\306!\307!\310\311\"\310\303\"\312\211\313	!\210\3142\255\204\207\n\315=\204\207\316\n!\2039\317\314\n!\"\210\202\207\310\320\"\203g\321!\211\203g\f=\204g\f\322	!=\203]\323\324!\210\202\207\317\314\311\f!\"\210\202\207>\203u\323\325!\210\202\207\326!\203\207\322!=\204\207\323\327!\210\330\303!\203\224\331	!\202\230\322	!
=\204\253\332
\"\210\333	!\210\313	!\210\3120-\207" [window frame function window-side atom-root side-main window-normalize-window window-frame window-parameter delete-other-windows nil window--check done t functionp throw window-atom window-atom-root frame-root-window error "Root of atomic window is root window of its frame" "Cannot make side window the only window" window-minibuffer-p "Can't expand minibuffer to full frame" window-with-parameter window--major-non-side-window delete-other-windows-internal run-window-configuration-change-hook ignore-window-parameters window-sides] 5 (#$ . 116834) nil])
#@186 Delete the windows in the same column with WINDOW, but not WINDOW itself.
This may be a useful alternative binding for \[delete-other-windows]
 if you often split windows horizontally.
(defalias 'delete-other-windows-vertically #[(&optional window) "\206\305 \306!\307\310\n\311\"\211=\2048\306\n!\211@	@U\2034\312\f8\312	8U\2034\nB)\202\313\314\",\207" [window edges w delenda e selected-window window-edges nil next-window 1 2 mapc delete-window] 4 (#$ . 118599) nil])
#@88 Record WINDOW's buffer.
WINDOW must be a live window and defaults to the selected one.
(defalias 'record-window-buffer #[(&optional window) "\306\307\"\310!\211\311!\236\312\313\"\210\n\203\"\314\315	\311!\"\"\210\316	!\317H\320=?\205er	q\210\321!\322!	\n\203N\nA@\f\313\223\323\n8\313\223D\202V\324\f!\324
\"DB\314\n\311!B\"\210+\325\326!+\207" [window buffer entry point start window-point-insertion-type window-normalize-window t window-buffer window-prev-buffers set-window-next-buffers nil set-window-prev-buffers assq-delete-all buffer-name 0 32 window-start window-point 2 copy-marker run-hooks buffer-list-update-hook] 7 (#$ . 119096)])
#@158 Unrecord BUFFER in WINDOW.
WINDOW must be a live window and defaults to the selected one.
BUFFER must be a live buffer and defaults to the buffer of
WINDOW.
(defalias 'unrecord-window-buffer #[(&optional window buffer) "\302\303\"	\206\f\304!\305\306	\307!\"\"\210\310\311	\312!\"\"*\207" [window buffer window-normalize-window t window-buffer set-window-prev-buffers assq-delete-all window-prev-buffers set-window-next-buffers delq window-next-buffers] 6 (#$ . 119770)])
#@414 Set WINDOW's buffer to BUFFER.
WINDOW must be a live window and defaults to the selected one.
Optional argument START non-nil means set WINDOW's start position
to START.  Optional argument POINT non-nil means set WINDOW's
point to POINT.  If WINDOW is selected this also sets BUFFER's
`point' to POINT.  If WINDOW is selected and the buffer it showed
before was current this also makes BUFFER the current buffer.
(defalias 'set-window-buffer-start-and-point #[(window buffer &optional start point) "\306\307\"\211\310 =\311!p=\312\"\210\n\203 	\203 q\210\f\203*\313\f\307#\210
\2052\314
\"*\207" [window current selected buffer start point window-normalize-window t selected-window window-buffer set-window-buffer set-window-start set-window-point] 5 (#$ . 120258)])
#@361 If non-nil, allow switching to an already visible buffer.
If this variable is non-nil, `switch-to-prev-buffer' and
`switch-to-next-buffer' may switch to an already visible buffer.
If this variable is nil, `switch-to-prev-buffer' and
`switch-to-next-buffer' always try to avoid switching to a buffer
that is already visible in another window on the same frame.
(custom-declare-variable 'switch-to-visible-buffer t '(#$ . 121046) :type 'boolean :version "24.1" :group 'windows)
#@576 In WINDOW switch to previous buffer.
WINDOW must be a live window and defaults to the selected one.
Return the buffer switched to, nil if no suitable buffer could be
found.

Optional argument BURY-OR-KILL non-nil means the buffer currently
shown in WINDOW is about to be buried or killed and consequently
shall not be switched to in future invocations of this command.

As a special case, if BURY-OR-KILL equals `append', this means to
move the buffer to the end of WINDOW's previous buffers list so a
future invocation of `switch-to-prev-buffer' less likely switches
to it.
(defalias 'switch-to-prev-buffer #[(&optional window bury-or-kill) "\306\307\"\310!\311!\312!\313	\314\"\315\211%\315\211&'\316!\2033\317 \211\2043\320\321\"\210\322!\203?\320\323\n#\210\3242\253\325!\315\211(\203\270(@\211@\211%\203\257\326%!\204l%&B\211&\204\257%\n=\204\257\f\203~\f%!\203\257)\204\212%>\204\257*\204\236\327%	\"\203\236%'\202\257\330%
A@\331
8$\210\332\324\307\"\210(A\211(\204N*)\203\304\333	!\202\310\333	!\237\315+\211(\2037(@+\326+!\203.+\n=\204.\f\203\357\f+!\203.\334+!\335H\336=\204.)\204+>\204.*\204\327+	\"\203'\204.+'\202.+%\330%\"\210\332\324\307\"\210(A\211(\204\321*)\204\234\337!\315+\211(\203\233(@+\326+!\204`+&B\211&\204\222+\n=\204\222\f\203r\f+!\203\222+\325!\236\211\203\222+%\330%
A@\331
8$\210\332\324\307\"\210(A\211(\204I*'\205\252'%\330%\"0\210)\203\343)\340=\205\275\n\325!\236\341\342\n\325!\"\"\210\343\344\n\"\"\210
\203\337\341\340\325!
C\"\"\210)\202\355\343\n\344\n\"B\"\210&\203\"&\315+\211(\203!(@+\341\342+\325!\"\"\210\343\344+\312!\"\"\210(A\211(\204\375*%.	\207" [window frame old-buffer next-buffers pred entry window-normalize-window t window-frame window-buffer window-next-buffers frame-parameter buffer-predicate nil window-minibuffer-p minibuffer-selected-window error "Window %s is a minibuffer window" window-dedicated-p "Window %s is dedicated to buffer %s" found window-prev-buffers buffer-live-p get-buffer-window set-window-buffer-start-and-point 2 throw buffer-list buffer-name 0 32 reverse append set-window-prev-buffers assq-delete-all set-window-next-buffers delq new-buffer killed-buffers visible --dolist-tail-- bury-or-kill switch-to-visible-buffer buffer] 7 (#$ . 121529) nil])
#@170 In WINDOW switch to next buffer.
WINDOW must be a live window and defaults to the selected one.
Return the buffer switched to, nil if no suitable buffer could be
found.
(defalias 'switch-to-next-buffer #[(&optional window) "\306\307\"\310!\311!\312!\313	\314\"\315\211$\315\211%&\316!\2033\317 \211\2043\320\321\"\210\322!\203?\320\323\n#\210\3242\204\315'\211(\203\240(@'\325'!\204d'%B\211%\204\227'\n=\204\227\f\203v\f'!\203\227'\326!\236\211$\203\227'\327
$A@\330$8$\210\331\324\307\"\210(A\211(\204M*\332	!\315'\211(\203	(@'\325'!\203'\n=\204\f\203\313\f'!\203\333'!\334H\335=\204'\326!\236\204)\204\363\336'	\"\203\363'&\202'\327
\"\210\331\324\307\"\210(A\211(\204\255*\337\326!!\315$\211(\203v(@\211$@\211\203m\325
!\2044
%B\211%\204m
\n=\204m\f\203D\f
!\203m)\204[\336
	\"\203[&\204m
&\202m\327
$A@\330$8$\210\331\324\307\"\210(A\211(\204*&\205\203&\327
\"0\210\340\341
\"\"\210%\203\302%\315'\211(\203\301(@'\342\343'\326!\"\"\210\340\341'\312!\"\"\210(A\211(\204\235*
.	\207" [window frame old-buffer next-buffers pred new-buffer window-normalize-window t window-frame window-buffer window-next-buffers frame-parameter buffer-predicate nil window-minibuffer-p minibuffer-selected-window error "Window %s is a minibuffer window" window-dedicated-p "Window %s is dedicated to buffer %s" found buffer-live-p window-prev-buffers set-window-buffer-start-and-point 2 throw buffer-list buffer-name 0 32 get-buffer-window reverse set-window-next-buffers delq set-window-prev-buffers assq-delete-all entry killed-buffers visible buffer --dolist-tail-- switch-to-visible-buffer] 7 (#$ . 123936) nil])
#@405 Search LIST for a valid buffer to display in FRAME.
Return nil when all buffers in LIST are undesirable for display,
otherwise return the first suitable buffer in LIST.

Buffers not visible in windows are preferred to visible buffers,
unless VISIBLE-OK is non-nil.
If the optional argument FRAME is nil, it defaults to the selected frame.
If BUFFER is non-nil, ignore occurrences of that buffer in LIST.
(defalias 'get-next-valid-buffer #[(list &optional buffer visible-ok frame) "\206\306 \307\310\"\311\211\n\204S\f\203S\f@
	=\204M\312	!\203M\2031	!\203M\313	!\314H\315=\204M\204G\316	\317\"\204M	\211\202\fA\202\f@+\207" [frame buf found pred list buffer selected-frame frame-parameter buffer-predicate nil buffer-live-p buffer-name 0 32 get-buffer-window visible visible-ok] 4 (#$ . 125684)])
#@402 Return the last buffer in FRAME's buffer list.
If BUFFER is the last buffer, return the preceding buffer
instead.  Buffers not visible in windows are preferred to visible
buffers, unless optional argument VISIBLE-OK is non-nil.
Optional third argument FRAME nil or omitted means use the
selected frame's buffer list.  If no such buffer exists, return
the buffer `*scratch*', creating it if necessary.
(defalias 'last-buffer #[(&optional buffer visible-ok frame) "\206\304 \305\306!\237	\n$\206#\307\310!\206#\311\310!\312!\210)\207" [frame buffer visible-ok scratch selected-frame get-next-valid-buffer buffer-list get-buffer "*scratch*" get-buffer-create set-buffer-major-mode] 5 (#$ . 126516)])
#@227 Function called to automatically hide frames.
The function is called with one argument - a frame.

Functions affected by this option are those that bury a buffer
shown in a separate frame like `quit-window' and `bury-buffer'.
(custom-declare-variable 'frame-auto-hide-function '#'iconify-frame '(#$ . 127231) :type '(choice (const :tag "Iconify" iconify-frame) (const :tag "Delete" delete-frame) (const :tag "Do nothing" ignore) function) :group 'windows :group 'frames :version "24.1")
#@334 Delete WINDOW if possible.
WINDOW must be a live window and defaults to the selected one.
Optional argument DEDICATED-ONLY non-nil means to delete WINDOW
only if it's dedicated to its buffer.  Optional argument KILL
means the buffer shown in window will be killed.  Return non-nil
if WINDOW gets deleted or its frame is auto-hidden.
(defalias 'window--delete #[(&optional window dedicated-only kill) "\306\307\"	\205
\310!??\205C\311!\211\303=\2039\312!\f\203*\313!\210\2024\314
!\2034
!\210)\303\202B\n\205B\315!\210\307)\207" [window dedicated-only deletable frame kill frame-auto-hide-function window-normalize-window t window-dedicated-p window-deletable-p window-frame delete-frame functionp delete-window] 4 (#$ . 127725)])
#@466 Put BUFFER-OR-NAME at the end of the list of all buffers.
There it is the least likely candidate for `other-buffer' to
return; thus, the least likely buffer for \[switch-to-buffer] to
select by default.

You can specify a buffer name as BUFFER-OR-NAME, or an actual
buffer object.  If BUFFER-OR-NAME is nil or omitted, bury the
current buffer.  Also, if BUFFER-OR-NAME is nil or omitted,
remove the current buffer from the selected window if it is
displayed there.
(defalias 'bury-buffer #[(&optional buffer-or-name) "\302!\303	!\210\204$	\304 =\203$\305\306\307\"\204$\310\306\211\"\210\311\306\312\"\210)\306\207" [buffer-or-name buffer window-normalize-buffer bury-buffer-internal window-buffer window--delete nil t set-window-dedicated-p switch-to-prev-buffer bury] 3 (#$ . 128480) nil])
#@47 Switch to the last buffer in the buffer list.
(defalias 'unbury-buffer #[nil "\300\301 !\207" [switch-to-buffer last-buffer] 2 (#$ . 129284) nil])
#@43 In selected window switch to next buffer.
(defalias 'next-buffer #[nil "\300 \203	\301\302!\207\303 \304=\203\301\305!\207\306 \207" [window-minibuffer-p error "Cannot switch buffers in minibuffer window" window-dedicated-p t "Window is strongly dedicated to its buffer" switch-to-next-buffer] 2 (#$ . 129437) nil])
#@47 In selected window switch to previous buffer.
(defalias 'previous-buffer #[nil "\300 \203	\301\302!\207\303 \304=\203\301\305!\207\306 \207" [window-minibuffer-p error "Cannot switch buffers in minibuffer window" window-dedicated-p t "Window is strongly dedicated to its buffer" switch-to-prev-buffer] 2 (#$ . 129762) nil])
#@758 Delete all windows showing BUFFER-OR-NAME.
BUFFER-OR-NAME may be a buffer or the name of an existing buffer
and defaults to the current buffer.

The following non-nil values of the optional argument FRAME
have special meanings:

- t means consider all windows on the selected frame only.

- `visible' means consider all windows on all visible frames on
  the current terminal.

- 0 (the number zero) means consider all windows on all visible
  and iconified frames on the current terminal.

- A frame means consider all windows on that frame only.

Any other value of FRAME means consider all windows on all
frames.

When a window showing BUFFER-OR-NAME is dedicated and the only
window of its frame, that frame is deleted when there are other
frames left.
(defalias 'delete-windows-on #[(&optional buffer-or-name frame) "\306!	\204\307\202	\307=\203\310\202	\311\310\211\n#\310\211\205r
@\312\f!=\203e\313\f!\211\301=\203I\314\f!\203I\315\316\f!!\210\202a\307=\203W\317\f!\210\202a\320\f\310\"\210\321\f\322\"\210)\202j\323\f\"\210
A\211\204$\310,\207" [buffer-or-name frame all-frames buffer window --dolist-tail-- window-normalize-buffer t nil window-list-1 window-buffer window-deletable-p window-dedicated-p delete-frame window-frame delete-window set-window-dedicated-p switch-to-prev-buffer bury unrecord-window-buffer deletable] 5 (#$ . 130096) "BDelete windows on (buffer):\nP"])
#@538 Replace BUFFER-OR-NAME with some other buffer in all windows showing it.
BUFFER-OR-NAME may be a buffer or the name of an existing buffer
and defaults to the current buffer.

When a window showing BUFFER-OR-NAME is dedicated, that window is
deleted.  If that window is the only window on its frame, the
frame is deleted too when there are other frames left.  If there
are no other frames left, some other buffer is displayed in that
window.

This function removes the buffer denoted by BUFFER-OR-NAME from
all window-local buffer lists.
(defalias 'replace-buffer-in-windows #[(&optional buffer-or-name) "\304!\305\306\211\307#\306\211\205=@\310\n!	=\2030\311\n\307\211#\2045\312\n\306\"\210\313\n\314\"\210\2025\315\n	\"\210A\211\204\306+\207" [buffer-or-name buffer window --dolist-tail-- window-normalize-buffer window-list-1 nil t window-buffer window--delete set-window-dedicated-p switch-to-prev-buffer kill unrecord-window-buffer] 5 (#$ . 131522) "bBuffer to replace: "])
#@1335 Quit WINDOW and deal with its buffer.
WINDOW must be a live window and defaults to the selected one.

According to information stored in WINDOW's `quit-restore' window
parameter either (1) delete WINDOW and its frame, (2) delete
WINDOW, (3) restore the buffer previously displayed in WINDOW,
or (4) make WINDOW display some other buffer than the present
one.  If non-nil, reset `quit-restore' parameter to nil.

Optional second argument BURY-OR-KILL tells how to proceed with
the buffer of WINDOW.  The following values are handled:

nil means to not handle the buffer in a particular way.  This
  means that if WINDOW is not deleted by this function, invoking
  `switch-to-prev-buffer' will usually show the buffer again.

`append' means that if WINDOW is not deleted, move its buffer to
  the end of WINDOW's previous buffers so it's less likely that a
  future invocation of `switch-to-prev-buffer' will switch to it.
  Also, move the buffer to the end of the frame's buffer list.

`bury' means that if WINDOW is not deleted, remove its buffer
  from WINDOW'S list of previous buffers.  Also, move the buffer
  to the end of the frame's buffer list.  This value provides the
  most reliable remedy to not have `switch-to-prev-buffer' switch
  to this buffer again without killing the buffer.

`kill' means to kill WINDOW's buffer.
(defalias 'quit-restore-window #[(&optional window bury-or-kill) "\306\307\"\310!\311\302\"\312!\211@@\211	=\203,A\205-A@\211	=?\205-\f*\313\211&\f\204t\nA@\314=\204P\nA@\300=\203t\315!=\204t\316\n8	=\203t\317\313'\320=#\203t\321\322\n8!\203G\323\322\n8!\210\202G\nA@\211<\2036\324
@!\2036\316\n8	=\2036\316
8\250\203\326\325!\203\244\316
8\326!U?\202\254\316
8\327!U?\203\326\3301\321\331\316
8\325!\203\304\326!\202\307\327!Z\325\307\"#0\202\325\210\202\326\210\332\313\"\210\333
@
A@\322
8$\210'\334=\205\363	\312!\236&'\203\335\336	\312!\"\"\210\337\340	\341!\"\"\210&\203\335\334\312!&C\"\"\210\342\302\313#\210\321\322\n8!\203G\323\322\n8!\210\202G\342\302\313#\210\332\313\"\210\343'\"\210\324	!?\206c'\320=\203[\344	!\202c'\205c\345	!-\207" [window buffer quit-restore prev-buffers prev-buffer quad window-normalize-window t window-buffer window-parameter window-prev-buffers nil frame frame-root-window 3 window--delete kill window-live-p 2 select-window buffer-live-p window-combined-p window-total-height window-total-width (error) window-resize set-window-dedicated-p set-window-buffer-start-and-point append set-window-prev-buffers assq-delete-all set-window-next-buffers delq window-next-buffers set-window-parameter switch-to-prev-buffer kill-buffer bury-buffer-internal entry bury-or-kill] 7 (#$ . 132522)])
#@481 Quit WINDOW and bury its buffer.
WINDOW must be a live window and defaults to the selected one.
With prefix argument KILL non-nil, kill the buffer instead of
burying it.

According to information stored in WINDOW's `quit-restore' window
parameter either (1) delete WINDOW and its frame, (2) delete
WINDOW, (3) restore the buffer previously displayed in WINDOW,
or (4) make WINDOW display some other buffer than the present
one.  If non-nil, reset `quit-restore' parameter to nil.
(defalias 'quit-window #[(&optional kill window) "\302	\203\n\301\202\303\"\207" [window kill quit-restore-window bury] 3 (#$ . 135270) "P"])
#@392 Quit all windows showing BUFFER-OR-NAME.
BUFFER-OR-NAME may be a buffer or the name of an existing buffer
and defaults to the current buffer.  Optional argument KILL
non-nil means to kill BUFFER-OR-NAME.  KILL nil means to bury
BUFFER-OR-NAME.  Optional argument FRAME is handled as by
`delete-windows-on'.

This function calls `quit-window' on all candidate windows
showing BUFFER-OR-NAME.
(defalias 'quit-windows-on #[(&optional buffer-or-name kill frame) "\306!	\204\307\202	\307=\203\310\202	\311\310\211\n#\310\211\205E
@\312\f!=\2038\313
\f\"\210\202=\314\f\"\210
A\211\204$\310,\207" [buffer-or-name frame all-frames buffer window --dolist-tail-- window-normalize-buffer t nil window-list-1 window-buffer quit-window unrecord-window-buffer kill] 5 (#$ . 135903) "BQuit windows on (buffer):\nP"])
#@2163 Make a new window adjacent to WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Return the new window which is always a live window.

Optional argument SIZE a positive number means make WINDOW SIZE
lines or columns tall.  If SIZE is negative, make the new window
-SIZE lines or columns tall.  If and only if SIZE is non-nil, its
absolute value can be less than `window-min-height' or
`window-min-width'; so this command can make a new window as
small as one line or two columns.  SIZE defaults to half of
WINDOW's size.

Optional third argument SIDE nil (or `below') specifies that the
new window shall be located below WINDOW.  SIDE `above' means the
new window shall be located above WINDOW.  In both cases SIZE
specifies the new number of lines for WINDOW (or the new window
if SIZE is negative) including space reserved for the mode and/or
header line.

SIDE t (or `right') specifies that the new window shall be
located on the right side of WINDOW.  SIDE `left' means the new
window shall be located on the left of WINDOW.  In both cases
SIZE specifies the new number of columns for WINDOW (or the new
window provided SIZE is negative) including space reserved for
fringes and the scrollbar or a divider column.  Any other non-nil
value for SIDE is currently handled like t (or `right').

PIXELWISE, if non-nil, means to interpret SIZE pixelwise.

If the variable `ignore-window-parameters' is non-nil or the
`split-window' parameter of WINDOW equals t, do not process any
parameters of WINDOW.  Otherwise, if the `split-window' parameter
of WINDOW specifies a function, call that function with all three
arguments and return the value returned by that function.

Otherwise, if WINDOW is part of an atomic window, "split" the
root of that atomic window.  The new window does not become a
member of that atomic window.

If WINDOW is live, properties of the new window like margins and
scrollbars are inherited from WINDOW.  If WINDOW is an internal
window, these properties as well as the buffer displayed in the
new window are inherited from the window selected on WINDOW's
frame.  The selected window is not changed by this function.
(defalias 'split-window #[(&optional window size side pixelwise) "\306!	\204\f\307\202	\310>\203	\202\311\211\312>?\313!\314!\315\316\"\315\317\"@@AA\320\n\"BC\247\205M\321C\nD\322%E\n\203Y\323!\202\\\324!F\325\211GH\326!\210\3272\275I\204\355
\322=\204\355\330
!\203\212\331\327
C	#\"\210\202\355\315\332\"\203\261\333!\211G\203\261G=\204\261\331\327\316GC	D$\"\210\202\355A\301=\204\305\334!\203\305\335\336!\210\202\355A\301=\204\355\337!\203\333\315\337!\317\"\204\352\340!\203\355\315\340!\317\"\203\355\322@A\322=\203E\203E\341V\203\322@\f\205\f\342\f\n\322#JA\205.\315\317\"\204\"A\301=?\205.@\322=?\205.\343\n\"K\342\n\322#L\325\211MN\325OE\204{K\203bJ\344\f\n\325\322$ZJ\345\f\n\"T\245^\346 ]\202fL\347\245MP\204\221B\350MB\"_M\202\221E\341Y\203\214LEZM\202\221E[ME\204\363K\203\304\351\fMF\\[\n\325\322%\204^\351\fMF\\[\n\352\211H\322%\204^\335\353\f\"\210\202^\354MF\344\n\325\322$#LV\203^\354MF\344\n\352\211H\322$#LV\203^\335\353\"\210\202^E\341Y\203ELY\204\fM\355\n\"W\203\335\353\"\210\202^K\203B\351\fMF\\[\n\325\322%\204^\351\fMF\\[\n\352\211H\322%\204^\335\353\f\"\210\202^M\355\n\"W\204YLMZ\355\n\"W\203^\335\353\"\210\356\n\"\210@\322=\206o\343\n\"?NE\203\212\357M!N\203\204L\202\206J\245\202\250N\203\223\360\202\250K\203\242\361\345\f\n\"T\245\202\250\362\n\"\363\245OK\203\344\364\fM[\n\325H%\210\365OZQ\366\f!\211R\203\340\367R\362R\n\"Q_\"\210\370R!\211R\204\311*\202\371LMZ\"\210\372M[\nH$\210\367N\203\373\202\362\n\"OZ\"\210\374M	O$S\375\n\"\210A\301=\203j\203+\202B	\376=\2035\377\202B	\307=\203A\201T\202B	\201US\317#\210N\203f\315\317\"\203f\201U\314S!\317#\210)\202\233A\201V=\203\233\315\332\"\204\202\201U\332\322#\210N\203\222\201U\314S!\332\322#\210\201US\332\322#\210C\204\247\201W\n\"\210\201X!\210\201YS!\210\326!\210S.0.
\207" [window side horizontal frame parent function window-normalize-window below (below above right left) right (below above) window-frame window-parent window-parameter split-window window-side frame-char-size window--size-to-pixel t frame-right-divider-width frame-bottom-divider-width nil window--check done functionp throw window-atom window-atom-root window--side-window-p error "Cannot split side window or parent of side window" window-prev-sibling window-next-sibling 0 window-size window-combined-p window-min-size window-combinations window-min-pixel-size 2 round window-sizable-p preserved "Window %s too small for splitting" + window-safe-min-pixel-size window--resize-reset float 0.5 1.0 window-normal-size 2.0 window--resize-child-windows 1.0 window-child set-window-new-normal window-right set-window-new-pixel window--resize-this-window 1.0 split-window-internal window--pixel-to-total above top window-combination-limit window-combination-resize char-size size pixelwise pixel-size divider-width atom-root ignore ignore-window-parameters parent-pixel-size resize old-pixel-size new-pixel-size new-parent new-normal window-resize-pixelwise normal sub new bottom set-window-parameter atom window--sanitize-window-sizes run-window-configuration-change-hook run-window-scroll-functions] 9 (#$ . 136736)])
#@298 If non-nil, \[split-window-below] preserves point in the new window.
If nil, adjust point in the two windows to minimize redisplay.
This option applies only to `split-window-below' and functions
that call it.  The low-level `split-window' function always keeps
the original point in both windows.
(custom-declare-variable 'split-window-keep-point t '(#$ . 142276) :type 'boolean :group 'windows)
#@654 Split the selected window into two windows, one above the other.
The selected window is above.  The newly split-off window is
below and displays the same buffer.  Return the new window.

If optional argument SIZE is omitted or nil, both windows get the
same height, or close to it.  If SIZE is positive, the upper
(selected) window gets SIZE lines.  If SIZE is negative, the
lower (new) window gets -SIZE lines.

If the variable `split-window-keep-point' is non-nil, both
windows get the same value of point as the selected window.
Otherwise, the window starts are chosen so as to minimize the
amount of redisplay; this is convenient on slow terminals.
(defalias 'split-window-below #[(&optional size) "\306 \307 \205\310!\311\211\211\211\203-\312W\203-[W\203-\313\314!\210\315\311\"\204\221r\316 q\210\212\317 b\210\320\321 !\322\n`\"\210`\307\n!V\203X\323\n`\"\210\321 U\203e\324\320\325!\210`)\f\203y	`X\203y\323	S\"\210\f\203\220\317\n!
X\203\220\323\n
\"\203\220\326\n!\210)\327\330\"\211\203\243\331\n\330#\210)\n.\207" [size bottom new-window moved moved-by-window-height old-point selected-window window-point prefix-numeric-value nil 0 error "Size of new window too small" split-window window-buffer window-start vertical-motion window-height set-window-start set-window-point t -1 select-window window-parameter quit-restore set-window-parameter old-window window-min-height split-window-keep-point] 8 (#$ . 142679) "P"])
(defalias 'split-window-vertically 'split-window-below)
#@593 Split the selected window into two side-by-side windows.
The selected window is on the left.  The newly split-off window
is on the right and displays the same buffer.  Return the new
window.

If optional argument SIZE is omitted or nil, both windows get the
same width, or close to it.  If SIZE is positive, the left-hand
(selected) window gets SIZE columns.  If SIZE is negative, the
right-hand (new) window gets -SIZE columns.  Here, SIZE includes
the width of the window's scroll bar; if there are no scroll
bars, it includes the width of the divider column to the window's
right, if any.
(defalias 'split-window-right #[(&optional size) "\305 \205	\306!\307\203\"\310W\203\"[W\203\"\311\312!\210\313\307\314#\315\n\304\"\211\2037\316	\304\f#\210)	+\207" [size new-window old-window window-min-width quit-restore selected-window prefix-numeric-value nil 0 error "Size of new window too small" split-window t window-parameter set-window-parameter] 5 (#$ . 144220) "P"])
(defalias 'split-window-horizontally 'split-window-right)
#@113 Subroutine of `balance-windows-1'.
WINDOW must be a vertical combination (horizontal if HORIZONTAL
is non-nil).
(defalias 'balance-windows-2 #[(window horizontal) "\203\306\202\f\307	\n\"\310	!\211\311\312	!\211\313\211\313\211 \313\211!\"
\203WT\314
\n\"\203O\315
\n\316#Z\317
\320\"\210\321
!\211\2044\316\203\314\311V\203\314\245\313\f\211\203Z\204Z\322
!\204\301\315
\n\316#Z \323
 \n\313\316%!\324
!\\\"\210! U\204\301\325!#S\316\317
\326\"\210\321
!\211\204v\202Z\246\"\f\211\203\375\"\311V\203\375\322	!\204\365\324
\"^\316#\210\"Z\"\321
!\211\204\331\f\211\203)\"\311V\203)\327
!\320=\204!\324
\"^\316#\210\"Z\"\321
!\211\204\f\211\205Y\317
\327
!\320=\203A\315
\n\316#\202D\312
!\330!\245\"\210\331
\n\"\210\321
!\211\204/\313.\f\207" [window-resize-pixelwise window horizontal char-size first sub 1 frame-char-size window-child 0 window-new-pixel nil window-size-fixed-p window-size t set-window-new-normal ignore window-right window--resize-child-windows-skip-p window-sizable set-window-new-pixel - skip window-new-normal float balance-windows-1 number-of-children parent-size total-sum failed size sub-total sub-delta sub-amount rest] 7 (#$ . 145274)])
#@34 Subroutine of `balance-windows'.
(defalias 'balance-windows-1 #[(window &optional horizontal) "\304!\2055\304!\305	\n\"\203\306\n\"\2024\307!	\2053\310	\"\210\311	\n\"\210\312	!\211\204 \313))\207" [window sub horizontal size window-child window-combined-p balance-windows-2 window-new-pixel set-window-new-pixel balance-windows-1 window-right nil] 4 (#$ . 146571)])
#@303 Balance the sizes of windows of WINDOW-OR-FRAME.
WINDOW-OR-FRAME is optional and defaults to the selected frame.
If WINDOW-OR-FRAME denotes a frame, balance the sizes of all
windows of that frame.  If WINDOW-OR-FRAME denotes a window,
recursively balance the sizes of all child windows of that
window.
(defalias 'balance-windows #[(&optional window-or-frame) "\203\n\303!\203\304!\202$\305!\204\306!\203 \202$\307\310\"\311	!\312\311	!!\210\313	!\210\314\n!\203E\315\n!\210\316\n!\210\317\n!\210\312\311	!\320\"\210\313	\320\"\210\314\n\320\"\205e\315\n\320\"\210\316\n\320\"\210\317\n!*\207" [window-or-frame window frame frame-live-p frame-root-window window-live-p window-child error "Not a window or frame %s" window-frame window--resize-reset balance-windows-1 window--resize-apply-p window-resize-apply window--pixel-to-total run-window-configuration-change-hook t] 3 (#$ . 146959) nil])
#@147 Return t if WINDOW cannot be resized in DIRECTION.
WINDOW defaults to the selected window.  DIRECTION can be
nil (i.e. any), `height' or `width'.
(defalias 'window-fixed-size-p #[(&optional window direction) "r\303!q\210\304\301!\205	\205\n\205\n	B\305\235?)\207" [window window-size-fixed direction window-buffer boundp ((height . width) (width . height))] 2 (#$ . 147879)])
#@137 Factor by which the window area should be over-estimated.
This is used by `balance-windows-area'.
Changing this globally has no effect.
(defvar window-area-factor 1 (#$ . 148269))
(make-variable-buffer-local 'window-area-factor)
#@124 Wrapper around `window-resize' with error checking.
Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function.
(defalias 'balance-windows-area-adjust #[(window delta horizontal pixelwise) "\304!\305Y\205$\3061\307	\n$\210\310\2110\202 \210\311\245\211\210\202\207" [delta window horizontal pixelwise abs 1 (error) adjust-window-trailing-edge 0 2] 5 (#$ . 148505)])
#@136 Make all visible windows the same area (approximately).
See also `window-area-factor' to change the relative size of
specific buffers.
(defalias 'balance-windows-area #[nil "\306\211\306\307\310\311\312\313\310\314\"\"\"\310
\310\315W\205=T\nT\310\211\2039@\211\316!\317!\2047\320!@\320!@W\321\322\310#\322\323#\324\325\326!\"#\321\322\310#\322\323#\324\325\326!\"#Z\324\325\326!\"\324\325\326!\"]\245 \203\251\322\310#\322\310#\\\202\270\322\323#\322\323#\\! !\245\211\"\306U\203\322 \327_!\315_\245\"\"\306U\203\374 \306U\204\374 	\\!\245\211\"\330V\204\366\"\331W\203\374\"\315\245\"\"\306U\203	 \\\202/\332\"$\210\320!B\211#\f\235\204.#\fB\306\211),A\211\204/*\202.\207" [unchanged carry round wins changelog window-resize-pixelwise 0 delq nil mapcar #[(win) "\301!?\205\207" [win window-fixed-size-p] 2] window-list nomini 2 next-window window-fixed-size-p window-pixel-edges * window-size t buffer-local-value window-area-factor window-buffer 3 1 -1 balance-windows-area-adjust pixelwise next win --dolist-tail-- horiz areadiff edgesize diff change] 9 (#$ . 148901) nil])
#@41 Helper function for `window-state-get'.
(defalias 'window--state-get-1 #[(window &optional writable) "\306!\203\n\307\202\310!\203\311\202\312\313!\314 =	\315\316!?\205)\317\320\321!B\322\323!B\324\325!B\326\327!B\330\331!B\332\331\333\"B\257\334!?\205W\335\336!BC\337!\340\211\340;\211<\203\230<@\211;@=\236A\211>\203\216!\203\204>\341=\203\216;@;AB\fB)<A\211<\204g*\342=\236A\211>\203\274!\203\260>\341=\203\274\342\f\236\204\274\342B\fB)\f\205\305\305\fBC*\n\205!\343!\344!62\302\345\n!\303B\346\347!B\350\351!B\352\353!B\354\355!B\356\357!B\360\361!B\362!\2032\202\f\3632\364\365\n\"\"B\366!\2036\202\3636!B\257*C%B?	\367>\205H\340\370!\211\203E\371!\"\fB\372!\211\2045\f\237)@\315?@\"-\207" [window type buffer selected list parameters window-top-child vc window-left-child hc leaf window-buffer selected-window append window-next-sibling ((last . t)) pixel-width window-pixel-width pixel-height window-pixel-height total-width window-total-width total-height window-total-height normal-height window-normal-size normal-width t window-live-p combination-limit window-combination-limit window-parameters nil writable clone-of window-point window-start buffer-name hscroll window-hscroll fringes window-fringes margins window-margins scroll-bars window-scroll-bars vscroll window-vscroll dedicated window-dedicated-p point copy-marker buffer-local-value window-point-insertion-type start (vc hc) window-child window--state-get-1 window-right par --dolist-tail-- window-persistent-parameters pers head tail] 22 (#$ . 150124)])
#@784 Return state of WINDOW as a Lisp object.
WINDOW can be any window and defaults to the root window of the
selected frame.

Optional argument WRITABLE non-nil means do not use markers for
sampling `window-point' and `window-start'.  Together, WRITABLE
and the variable `window-persistent-parameters' specify which
window parameters are saved by this function.  WRITABLE should be
non-nil when the return value shall be written to a file and read
back in another session.  Otherwise, an application may run into
an `invalid-read-syntax' error while attempting to read back the
value from file.

The return value can be used as argument for `window-state-put'
to put the state recorded here into an arbitrary window.  The
value can be also stored on disk and read back in a new session.
(defalias 'window-state-get #[(&optional window writable) "\203\302!\203\202\303\304\"\202\305 \306\307!B\310\307\311\"B\312\307\313\311#B\314\307\311\211#B\315\307\313\316#B\317\307\311\316#B\320\307\313\211\311$B\321\307\311\313\311$B\322\307\313\311\211$B\323\307\311\211\211$B\324\307\313\316\311$B\325\307\311\316\311$B\257\f\326	\"B\207" [window writable window-valid-p error "%s is not a live or internal window" frame-root-window min-height window-min-size min-width t min-height-ignore nil min-width-ignore min-height-safe safe min-width-safe min-pixel-height min-pixel-width min-pixel-height-ignore min-pixel-width-ignore min-pixel-height-safe min-pixel-width-safe window--state-get-1] 17 (#$ . 151759)])
#@41 Helper variable for `window-state-put'.
(defvar window-state-put-list nil (#$ . 153289))
#@41 Helper variable for `window-state-put'.
(defvar window-state-put-stale-windows nil (#$ . 153384))
#@41 Helper function for `window-state-put'.
(defalias 'window--state-put-1 #[(state &optional window ignore totals pixelwise) "@A	\306=\203\nBB\211\202	\307>\205	\310=\311\n\f
#!\312\"\313\211#$\313%\211&\205&@\211%@\314>\203\374\315%\236\203S\313$\202\357'\203|
\203l\f\203d\316\202e\317%\236A\202\216\f\203t\320\202u\321%\236A\202\216\322!\f\203\207\323\202\210\324%\236A_!\211#\f\203\250(
\203\243\325\326\n!!\202\244\327_\202\270)
\203\266\330\326\n!!\202\267\327_]#\331\n#[\f\332
%\203\332\333%\236*\334\n#\f
$$)\202\337\335\336\n\"\210\"\203\357\313\"\337\n!BB\340%\n+'$\210$&A\211&\204:\313.)\207" [state type window window-state-put-list horizontal pixelwise leaf (vc hc) hc window-size t nil (leaf vc hc) last pixel-width pixel-height total-width total-height round normal-width normal-height frame-char-width window-frame 1 frame-char-height window-sizable-p safe combination-limit split-window error "Cannot resize window %s" window-parent window--state-put-1 total first size new item --dolist-tail-- totals window-safe-min-width window-safe-min-height window-combination-limit ignore] 7 (#$ . 153488)])
#@41 Helper function for `window-state-put'.
(defalias 'window--state-put-2 #[(ignore pixelwise) "\306\211\205\n@\211@\305	\236A\304	\236A\307	\236A1
\203(\3101
\"\210\3111!\3062\211\203H\n@2\31212@\306#\210\nA\211\2044*\f\203m\f\3062\211\203l\n@2\31212@2A#\210\nA\211\204V*\203
\313@!\211\203rq\210\3141\"\210\3151\316\236A\"\210\317\3201\321\236AB\"\210\322\236A\3231@A#\210)\324\236A\3251@\3268\3278\3308%\210)\3311\332\236A\"\2103\333>\2034\203\341\334\202\342\335	\236A\3361\3064#Z\30635\33715\306\211\211\211\2114&\203\34015\306\2114%\210*\202M\3411\30664$\2117\3361\3064#Z\2115\342V\203L\33715\3066\306\211\2114&\203L\34015\30664%\210*3\343>\203\2164\203]\344\202^\345	\236A\3361\3464#Z\30635\33715\306\211\211\211\2114&\203\212\34015\306\2114%\210*\202\311\3411\34664$\2117\3361\3464#Z\2115\342V\203\310\33715\3466\306\211\2114&\203\310\34015\34664%\210*\3471\350\236A\"\210\3511\353\3521\353\236A\"\210\3541\355\236A\"0\202\357\210\202\360\210\356\236A\203\374\3571!\210)\202\f\3601!\21018B8),\nA\211\204\306*\207" [window-state-put-list item --dolist-tail-- state parameters combination-limit nil buffer set-window-combination-limit window-parameters set-window-parameter get-buffer set-window-buffer set-window-hscroll hscroll apply set-window-fringes fringes margins set-window-margins scroll-bars set-window-scroll-bars 2 3 5 set-window-vscroll vscroll (t height) pixel-height total-height window-size window--resizable-p window-resize window-min-size 0 (t width) pixel-width total-width t set-window-dedicated-p dedicated (error) set-window-start start set-window-point point selected select-window switch-to-prev-buffer window parameter window-size-fixed pixelwise delta ignore min-size window-state-put-stale-windows] 10 (#$ . 154683)])
#@509 Put window state STATE into WINDOW.
STATE should be the state of a window returned by an earlier
invocation of `window-state-get'.  Optional argument WINDOW must
specify a valid window and defaults to the selected one.  If
WINDOW is not live, replace WINDOW by a live one before putting
STATE into it.

Optional argument IGNORE non-nil means ignore minimum window
sizes and fixed size restrictions.  IGNORE equal `safe' means
windows can get as small as `window-safe-min-height' and
`window-safe-min-width'.
(defalias 'window-state-put #[(state &optional window ignore) "\306\307	!\310	!\204/\311	!	\n=\203\312\n!\202)	\3132(\314\315\n\"0\316	\n\"\210)\317	\306\"\210\320	!\f@\321\f\236A\205F\322\f\236A\2113\203b\323	!\321\f\236AU\203b\324	!\322\f\236AU\206u\325	!\326\f\236AU\205u\327	!\330\f\236AU43\203\200\331\202\201\332
\236A3\203\217\333\202\220\334
\236A54\204A\335	\3063#V\204\2625\335	\3363#V\203A6\203:3\203\300\337\202\301\340
\236A\211\203A3\203\323\341\202\324\342
\236A\2115\203A\335	\3063#V\204\3655\335	\3363#V\203A6\343=\203:3\203\344\202\345
\236A\211\203A3\203\346\202\347
\236A\2115\203A\335	\3063#V\204:5\335	\3363#V\203A\350\351	\"\202\207\fA\3067\352\353!8r8q\210\354\216\355	p\"\210\356\f	\30643%\210\35763\"\210+\203\204\211A\242\360	!\336=\203\200\361	!\210)\202j\362!.\207" [window-state-put-stale-windows window root frame state head nil window-normalize-window window-live-p frame-root-window frame-first-window live walk-window-subtree #[(window) "\301!\205\n\302\303\"\207" [window window-live-p throw live] 3] delete-other-windows-internal set-window-dedicated-p window-frame pixel-width pixel-height window-pixel-width window-pixel-height window-total-width total-width window-total-height total-height min-pixel-height min-height min-pixel-width min-weight window-size t min-pixel-height-ignore min-height-ignore min-pixel-width-ignore min-width-ignore safe min-pixel-height-safe min-height-safe min-pixel-width-safe min-width-safe error "Window %s too small to accommodate state" generate-new-buffer " *temp*" #[nil "\301!\205	\302!\207" [#1=#:temp-buffer buffer-name kill-buffer] 2] set-window-buffer window--state-put-1 window--state-put-2 window-deletable-p delete-window window--check pixelwise totals min-width ignore window-state-put-list #1#] 7 (#$ . 156601)])
#@984 Record information for window used by `display-buffer'.
TYPE specifies the type of the calling operation and must be one
of the symbols `reuse' (when WINDOW existed already and was
reused for displaying BUFFER), `window' (when WINDOW was created
on an already existing frame), or `frame' (when WINDOW was
created on a new frame).  WINDOW is the window used for or created
by the `display-buffer' routines.  BUFFER is the buffer that
shall be displayed.

This function installs or updates the quit-restore parameter of
WINDOW.  The quit-restore parameter is a list of four elements:
The first element is one of the symbols `window', `frame', `same' or
`other'.  The second element is either one of the symbols `window'
or `frame' or a list whose elements are the buffer previously
shown in the window, that buffer's window start and window point,
and the window's height.  The third element is the window
selected at the time the parameter was created.  The fourth
element is BUFFER.
(defalias 'display-buffer-record-window #[(type window buffer) "\305=\203_\306	!\n=\2034\307	\303\"\211:\2052\310\240\210	\311 =\206(	\3128=?\2052AA\311 \240)\207r\306	!q\210\313	\303\314p\315	!\316\317	!\f\"\320	!\203T\321	!\202W\322	!F\311 \nF#)\207\301=\203p\313	\303\301\211\311 \nF#\207\323=\205\200\313	\303\323\211\311 \nF#\207" [type window buffer quit-restore window-point-insertion-type reuse window-buffer window-parameter same selected-window 2 set-window-parameter other window-start copy-marker window-point window-combined-p window-total-height window-total-width frame] 10 (#$ . 159019)])
(byte-code "\300\301\302\303\304\305\306\307&\210\310\301\311\312#\210\300\313\302\314\304\315\306\316&\210\300\317\320\321\304\322\306\316&\210\300\323\302\324\304\325\306\307\306\316&	\210\310\323\311\312#\210\326\323\327\330#\210\300\331\302\332\304\333\306\307\306\316&	\210\310\331\311\312#\210\326\331\327\330#\207" [custom-declare-variable display-buffer-function nil "If non-nil, function to call to handle `display-buffer'.\nIt will receive two args, the buffer and a flag which if non-nil\nmeans that the currently selected window is not acceptable.  It\nshould choose or create a window, display the specified buffer in\nit, and return the window.\n\nThe specified function should call `display-buffer-record-window'\nwith corresponding arguments to set up the quit-restore parameter\nof the window used." :type (choice (const nil) (function :tag "function")) :group windows make-obsolete-variable display-buffer-alist "24.3" pop-up-frame-alist "Alist of parameters for automatically generated new frames.\nIf non-nil, the value you specify here is used by the default\n`pop-up-frame-function' for the creation of new frames.\n\nSince `pop-up-frame-function' is used by `display-buffer' for\nmaking new frames, any value specified here by default affects\nthe automatic generation of new frames via `display-buffer' and\nall functions based on it.  The behavior of `make-frame' is not\naffected by this variable." (repeat (cons :format "%v" (symbol :tag "Parameter") (sexp :tag "Value"))) frames pop-up-frame-function (lambda nil (make-frame pop-up-frame-alist)) "Function used by `display-buffer' for creating a new frame.\nThis function is called with no arguments and should return a new\nframe.  The default value calls `make-frame' with the argument\n`pop-up-frame-alist'." function special-display-buffer-names "List of names of buffers that should be displayed specially.\nDisplaying a buffer with `display-buffer' or `pop-to-buffer', if\nits name is in this list, displays the buffer in a way specified\nby `special-display-function'.  `special-display-popup-frame'\n(the default for `special-display-function') usually displays\nthe buffer in a separate frame made with the parameters specified\nby `special-display-frame-alist'.  If `special-display-function'\nhas been set to some other function, that function is called with\nthe buffer as first, and nil as second argument.\n\nAlternatively, an element of this list can be specified as\n(BUFFER-NAME FRAME-PARAMETERS), where BUFFER-NAME is a buffer\nname and FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.\n`special-display-popup-frame' will interpret such pairs as frame\nparameters when it creates a special frame, overriding the\ncorresponding values from `special-display-frame-alist'.\n\nAs a special case, if FRAME-PARAMETERS contains (same-window . t)\n`special-display-popup-frame' displays that buffer in the\nselected window.  If FRAME-PARAMETERS contains (same-frame . t),\nit displays that buffer in a window on the selected frame.\n\nIf `special-display-function' specifies some other function than\n`special-display-popup-frame', that function is called with the\nbuffer named BUFFER-NAME as first, and FRAME-PARAMETERS as second\nargument.\n\nFinally, an element of this list can be also specified as\n(BUFFER-NAME FUNCTION OTHER-ARGS).  In that case,\n`special-display-popup-frame' will call FUNCTION with the buffer\nnamed BUFFER-NAME as first argument, and OTHER-ARGS as the\nsecond.\n\nAny alternative function specified here is responsible for\nsetting up the quit-restore parameter of the window used.\n\nIf this variable appears \"not to work\", because you added a\nname to it but the corresponding buffer is displayed in the\nselected window, look at the values of `same-window-buffer-names'\nand `same-window-regexps'.  Those variables take precedence over\nthis one.\n\nSee also `special-display-regexps'." (repeat (choice :tag "Buffer" :value #1="" (string :format "%v") (cons :tag "With parameters" :format "%v" :value (#1#) (string :format "%v") (repeat :tag "Parameters" (cons :format "%v" (symbol :tag "Parameter") (sexp :tag "Value")))) (list :tag "With function" :format "%v" :value (#1#) (string :format "%v") (function :tag "Function") (repeat :tag "Arguments" (sexp))))) put risky-local-variable t special-display-regexps "List of regexps saying which buffers should be displayed specially.\nDisplaying a buffer with `display-buffer' or `pop-to-buffer', if\nany regexp in this list matches its name, displays it specially\nusing `special-display-function'.  `special-display-popup-frame'\n(the default for `special-display-function') usually displays\nthe buffer in a separate frame made with the parameters specified\nby `special-display-frame-alist'.  If `special-display-function'\nhas been set to some other function, that function is called with\nthe buffer as first, and nil as second argument.\n\nAlternatively, an element of this list can be specified as\n(REGEXP FRAME-PARAMETERS), where REGEXP is a regexp as above and\nFRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.\n`special-display-popup-frame' will then interpret these pairs as\nframe parameters when creating a special frame for a buffer whose\nname matches REGEXP, overriding the corresponding values from\n`special-display-frame-alist'.\n\nAs a special case, if FRAME-PARAMETERS contains (same-window . t)\n`special-display-popup-frame' displays buffers matching REGEXP in\nthe selected window.  (same-frame . t) in FRAME-PARAMETERS means\nto display such buffers in a window on the selected frame.\n\nIf `special-display-function' specifies some other function than\n`special-display-popup-frame', that function is called with the\nbuffer whose name matched REGEXP as first, and FRAME-PARAMETERS\nas second argument.\n\nFinally, an element of this list can be also specified as\n(REGEXP FUNCTION OTHER-ARGS).  `special-display-popup-frame'\nwill then call FUNCTION with the buffer whose name matched\nREGEXP as first, and OTHER-ARGS as second argument.\n\nAny alternative function specified here is responsible for\nsetting up the quit-restore parameter of the window used.\n\nIf this variable appears \"not to work\", because you added a\nname to it but the corresponding buffer is displayed in the\nselected window, look at the values of `same-window-buffer-names'\nand `same-window-regexps'.  Those variables take precedence over\nthis one.\n\nSee also `special-display-buffer-names'." (repeat (choice :tag "Buffer" :value #1# (regexp :format "%v") (cons :tag "With parameters" :format "%v" :value (#1#) (regexp :format "%v") (repeat :tag "Parameters" (cons :format "%v" (symbol :tag "Parameter") (sexp :tag "Value")))) (list :tag "With function" :format "%v" :value (#1#) (regexp :format "%v") (function :tag "Function") (repeat :tag "Arguments" (sexp)))))] 10)
#@382 Return non-nil if a buffer named BUFFER-NAME gets a special frame.
More precisely, return t if `special-display-buffer-names' or
`special-display-regexps' contain a string entry equaling or
matching BUFFER-NAME.  If `special-display-buffer-names' or
`special-display-regexps' contain a list entry whose car equals
or matches BUFFER-NAME, the return value is the cdr of that
entry.
(defalias 'special-display-p #[(buffer-name) "\306	\n\235\203\f\307\202t\310	\n\"\211\203A\202t\3112t\306\211\205r
@\211;\203G\f	\306\307\f\312#)\266\203\203j\313\311\307\"\210\202j\f:\203j\f@;\203j\f@	\306\307\f\312#)\266\203\203j\313\311\fA\"\210
A\211\204&\306*0)\207" [tmp buffer-name special-display-buffer-names special-display-regexps regexp --dolist-tail-- nil t assoc found string-match throw inhibit-changing-match-data] 8 (#$ . 167496)])
(byte-code "\300\301\302\303\304\305\306\307&\210\310\301\311\312#\207" [custom-declare-variable special-display-frame-alist '((height . 14) (width . 80) (unsplittable . t)) "Alist of parameters for special frames.\nSpecial frames are used for buffers whose names are listed in\n`special-display-buffer-names' and for buffers whose names match\none of the regular expressions in `special-display-regexps'.\n\nThis variable can be set in your init file, like this:\n\n  (setq special-display-frame-alist \\='((width . 80) (height . 20)))\n\nThese supersede the values given in `default-frame-alist'." :type (repeat (cons :format "%v" (symbol :tag "Parameter") (sexp :tag "Value"))) :group frames make-obsolete-variable display-buffer-alist "24.3"] 8)
#@669 Pop up a frame displaying BUFFER and return its window.
If BUFFER is already displayed in a visible or iconified frame,
raise that frame.  Otherwise, display BUFFER in a new frame.

Optional argument ARGS is a list specifying additional
information.

If ARGS is an alist, use it as a list of frame parameters.  If
these parameters contain (same-window . t), display BUFFER in
the selected window.  If they contain (same-frame . t), display
BUFFER in a window of the selected frame.

If ARGS is a list whose car is a symbol, use (car ARGS) as a
function to do the work.  Pass it BUFFER as first argument, and
pass the elements of (cdr ARGS) as the remaining arguments.
(defalias 'special-display-popup-frame #[(buffer &optional args) "\203@9\203\306@	A#\207\307	\310\"\211\2032\311\n!\312!\210\313!\210\314\315\n	#\210\n)\206\235\316\236A\203N\3171I\320	\321\322#\210\323 0\202K\210\321\206\235\324\236A\204\\\316\236A\203m\322\321\211\321\325	!,\206\235r	q\210\326\327\"!)\330!\314\303\n	#\210	\331\n!=\204\226\332\n	\"\210\333\n\321\"\210\334\n\322\"\210\n*)\207" [args buffer window frame pop-up-windows pop-up-frames apply get-buffer-window 0 window-frame make-frame-visible raise-frame display-buffer-record-window reuse same-window (error) switch-to-buffer nil t selected-window same-frame display-buffer make-frame append frame-selected-window window-buffer set-window-buffer set-window-prev-buffers set-window-dedicated-p special-display-buffer-names special-display-regexps special-display-frame-alist] 5 (#$ . 169114)])
(byte-code "\300\301\302\303\304\305\306\307&\210\310\301\311\312#\210\300\313\314\315\304\316\306\317&\210\300\320\314\321\304\322\306\317&\207" [custom-declare-variable special-display-function 'special-display-popup-frame "Function to call for displaying special buffers.\nThis function is called with two arguments - the buffer and,\noptionally, a list - and should return a window displaying that\nbuffer.  The default value usually makes a separate frame for the\nbuffer using `special-display-frame-alist' to specify the frame\nparameters.  See the definition of `special-display-popup-frame'\nfor how to specify such a function.\n\nA buffer is special when its name is either listed in\n`special-display-buffer-names' or matches a regexp in\n`special-display-regexps'.\n\nThe specified function should call `display-buffer-record-window'\nwith corresponding arguments to set up the quit-restore parameter\nof the window used." :type function :group frames make-obsolete-variable display-buffer-alist "24.3" same-window-buffer-names nil "List of names of buffers that should appear in the \"same\" window.\n`display-buffer' and `pop-to-buffer' show a buffer whose name is\non this list in the selected rather than some other window.\n\nAn element of this list can be a cons cell instead of just a\nstring.  In that case, the cell's car must be a string specifying\nthe buffer name.  This is for compatibility with\n`special-display-buffer-names'; the cdr of the cons cell is\nignored.\n\nSee also `same-window-regexps'." (repeat (string :format "%v")) windows same-window-regexps "List of regexps saying which buffers should appear in the \"same\" window.\n`display-buffer' and `pop-to-buffer' show a buffer whose name\nmatches a regexp on this list in the selected rather than some\nother window.\n\nAn element of this list can be a cons cell instead of just a\nstring.  In that case, the cell's car must be a regexp matching\nthe buffer name.  This is for compatibility with\n`special-display-regexps'; the cdr of the cons cell is ignored.\n\nSee also `same-window-buffer-names'." (repeat (regexp :format "%v"))] 8)
#@307 Return non-nil if a buffer named BUFFER-NAME would be shown in the "same" window.
This function returns non-nil if `display-buffer' or
`pop-to-buffer' would show a buffer named BUFFER-NAME in the
selected rather than (as usual) some other window.  See
`same-window-buffer-names' and `same-window-regexps'.
(defalias 'same-window-p #[(buffer-name) ";?\206f	\235\206f\306	\"\206f\3072b\n\310\211\205`\f@\211;\2037\310\311\312#)\266\203\204S:\203X@;\203X@\310\311\312#)\266\203\203X\313\307\311\"\210\fA\211\204\310*0\206f\310\207" [buffer-name same-window-buffer-names same-window-regexps regexp --dolist-tail-- inhibit-changing-match-data assoc found nil t string-match throw] 8 (#$ . 172815)])
(byte-code "\300\301\302\303\304\305\306\307&\210\300\310\302\311\304\312\313\314\306\307&	\210\315\310\316\317#\210\300\320\321\322\304\312\306\307&\210\300\323\324\325\304\326\313\327\306\307&	\210\300\330\331\332\304\333\313\327\306\307&	\210\300\334\335\336\304\337\313\327\306\307&	\207" [custom-declare-variable pop-up-frames nil "Whether `display-buffer' should make a separate frame.\nIf nil, never make a separate frame.\nIf the value is `graphic-only', make a separate frame\non graphic displays only.\nAny other non-nil value means always make a separate frame." :type (choice (const :tag "Never" nil) (const :tag "On graphic displays only" graphic-only) (const :tag "Always" t)) :group windows display-buffer-reuse-frames "Non-nil means `display-buffer' should reuse frames.\nIf the buffer in question is already displayed in a frame, raise\nthat frame." boolean :version "21.1" make-obsolete-variable "use a `reusable-frames' alist entry in `display-buffer-alist'." "24.3" pop-up-windows t "Non-nil means `display-buffer' should make a new window." split-window-preferred-function 'split-window-sensibly "Function called by `display-buffer' routines to split a window.\nThis function is called with a window as single argument and is\nsupposed to split that window and return the new window.  If the\nwindow can (or shall) not be split, it is supposed to return nil.\nThe default is to call the function `split-window-sensibly' which\ntries to split the window in a way which seems most suitable.\nYou can customize the options `split-height-threshold' and/or\n`split-width-threshold' in order to have `split-window-sensibly'\nprefer either vertical or horizontal splitting.\n\nIf you set this to any other function, bear in mind that the\n`display-buffer' routines may call this function two times.  The\nargument of the first call is the largest window on its frame.\nIf that call fails to return a live window, the function is\ncalled again with the least recently used window as argument.  If\nthat call fails too, `display-buffer' will use an existing window\nto display its buffer.\n\nThe window selected at the time `display-buffer' was invoked is\nstill selected when this function is called.  Hence you can\ncompare the window argument with the value of `selected-window'\nif you intend to split the selected window instead or if you do\nnot want to split the selected window." function "23.1" split-height-threshold 80 "Minimum height for splitting windows sensibly.\nIf this is an integer, `split-window-sensibly' may split a window\nvertically only if it has at least this many lines.  If this is\nnil, `split-window-sensibly' is not allowed to split a window\nvertically.  If, however, a window is the only window on its\nframe, `split-window-sensibly' may split it vertically\ndisregarding the value of this variable." (choice (const nil) (integer :tag "lines")) split-width-threshold 160 "Minimum width for splitting windows sensibly.\nIf this is an integer, `split-window-sensibly' may split a window\nhorizontally only if it has at least this many columns.  If this\nis nil, `split-window-sensibly' is not allowed to split a window\nhorizontally." (choice (const nil) (integer :tag "columns"))] 10)
#@1068 Return non-nil if `split-window-sensibly' may split WINDOW.
Optional argument HORIZONTAL nil or omitted means check whether
`split-window-sensibly' may split WINDOW vertically.  HORIZONTAL
non-nil means check whether WINDOW may be split horizontally.

WINDOW may be split vertically when the following conditions
hold:
- `window-size-fixed' is either nil or equals `width' for the
  buffer of WINDOW.
- `split-height-threshold' is an integer and WINDOW is at least as
  high as `split-height-threshold'.
- When WINDOW is split evenly, the emanating windows are at least
  `window-min-height' lines tall and can accommodate at least one
  line plus - if WINDOW has one - a mode line.

WINDOW may be split horizontally when the following conditions
hold:
- `window-size-fixed' is either nil or equals `height' for the
  buffer of WINDOW.
- `split-width-threshold' is an integer and WINDOW is at least as
  wide as `split-width-threshold'.
- When WINDOW is split evenly, the emanating windows are at least
  `window-min-width' or two (whichever is larger) columns wide.
(defalias 'window-splittable-p #[(window &optional horizontal) "\306!\205Q\307!?\205Qr\310!q\210	\2030\n\311>\205P\247\205P\312!\f\313]\313_]Y\202P\n\314>\205P
\247\205P\315!
\203J\313\202K\316]\313_]Y)\207" [window horizontal window-size-fixed split-width-threshold window-min-width split-height-threshold window-live-p window--side-window-p window-buffer (nil height) window-width 2 (nil width) window-height 1 window-min-height mode-line-format] 4 (#$ . 176782)])
#@1575 Split WINDOW in a way suitable for `display-buffer'.
WINDOW defaults to the currently selected window.
If `split-height-threshold' specifies an integer, WINDOW is at
least `split-height-threshold' lines tall and can be split
vertically, split WINDOW into two windows one above the other and
return the lower window.  Otherwise, if `split-width-threshold'
specifies an integer, WINDOW is at least `split-width-threshold'
columns wide and can be split horizontally, split WINDOW into two
windows side by side and return the window on the right.  If this
can't be done either and WINDOW is the only window on its frame,
try to split WINDOW vertically disregarding any value specified
by `split-height-threshold'.  If that succeeds, return the lower
window.  Return nil otherwise.

By default `display-buffer' routines call this function to split
the largest or least recently used window.  To change the default
customize the option `split-window-preferred-function'.

You can enforce this function to not split WINDOW horizontally,
by setting (or binding) the variable `split-width-threshold' to
nil.  If, in addition, you set `split-height-threshold' to zero,
chances increase that this function does split WINDOW vertically.

In order to not split WINDOW vertically, set (or bind) the
variable `split-height-threshold' to nil.  Additionally, you can
set `split-width-threshold' to zero to make a horizontal split
more likely to occur.

Have a look at the function `window-splittable-p' if you want to
know how `split-window-sensibly' determines whether WINDOW can be
split.
(defalias 'split-window-sensibly #[(&optional window) "\206\303 \304!\203 \305!r\306\216\307	@\310\"\210\311 +\206d\304\312\"\203:\305!r\313\216\307	@\310\"\210\314 +\206d\315\316!!=\205d\317!?\205d\320\304!\205c\305!r\321\216\307	@\310\"\210\311 +))\207" [window save-selected-window--state split-height-threshold selected-window window-splittable-p internal--before-with-selected-window #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord split-window-below t #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] split-window-right frame-root-window window-frame window-minibuffer-p 0 #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2]] 4 (#$ . 178345)])
#@128 Try to split WINDOW.
Return value returned by `split-window-preferred-function' if it
represents a live window, nil otherwise.
(defalias 'window--try-to-split-window #[(window &optional alist) "\305!\205F\306\307!\310\"?\205F	\311=\204*	\312=\203.\313\n\236A\204*\314\n\236A\203.\315\202/	\3161;!0\202=\210\317\305\f!\205E\f*\207" [window window-combination-limit alist split-window-preferred-function new-window window-live-p frame-parameter window-frame unsplittable display-buffer window-size window-height window-width t (error) nil] 3 (#$ . 180741)])
#@53 Return FRAME if it can be used to display a buffer.
(defalias 'window--frame-usable-p #[(frame) "\302!\205\303!\304	!\205\305	!?\205)\207" [frame window frame-live-p frame-root-window window-live-p window-minibuffer-p] 2 (#$ . 181319)])
(byte-code "\300\301\302\303\304\305\306\307\310\311&	\210\312\313\301\"\207" [custom-declare-variable even-window-sizes t "If non-nil `display-buffer' will try to even window sizes.\nOtherwise `display-buffer' will leave the window configuration\nalone.  Special values are `height-only' to even heights only and\n`width-only' to even widths only.  Any other value means to even\nany of them." :type (choice (const :tag "Never" nil) (const :tag "Side-by-side windows only" width-only) (const :tag "Windows above or below only" height-only) (const :tag "Always" t)) :version "25.1" :group windows defvaralias even-window-heights] 10)
#@202 Even sizes of WINDOW and selected window.
Even only if these windows are the only children of their parent,
`even-window-sizes' has the appropriate value and the selected
window is larger than WINDOW.
(defalias 'window--even-window-sizes #[(window) "\302\303!!\304U\205e\303 \303!=\205e	\305>\204=\306\307\"\203=\310 \310!V\203=\3111:\312\310!\310 Z\304\245\307\"0\207\210\313\207	\314>?\205e\306!\205e\315 \315!V\205e\3161c\312\315!\315 Z\304\245!0\207\210\313\207" [window even-window-sizes window-child-count window-parent 2 (nil height-only) window-combined-p t window-total-width (error) enlarge-window nil (nil width-only) window-total-height (error)] 3 (#$ . 182207)])
#@294 Display BUFFER in WINDOW.
TYPE must be one of the symbols `reuse', `window' or `frame' and
is passed unaltered to `display-buffer-record-window'.  ALIST is
the alist argument of `display-buffer'.  Set `window-dedicated-p'
to DEDICATED if non-nil.  Return WINDOW if BUFFER and WINDOW are
live.
(defalias 'window--display-buffer #[(buffer window type &optional alist dedicated) "\306!\205\267\307	!\205\267\310\n	#\210\311	!=\2048\312	\313\"\210\314	\"\210\203-\312	\"\210\n\315>\2038\316	\313\"\210\317	\320\"\321\f\236A\322\f\236A\323\f\236A\305\f\236A)*+,\n\324=\204l,@\325=\203\320,A@\324=\203\320)\203\265):\203\265)@)A\326	!+\211*\247\203\261+\247\203\261\327\330!+\331	!Z\\\"\210\332\333!*\334	!Z\\\"\210+\202\265\335)!\203\265\3361\310)	!0\202\314\210\202\265\210\202\265\n\301=\204\347,@\325=\203\265,A@\301=\203\265+\203D+\247\203,+\250\203\375+\202\337\331\340	!!+_!\211-\331	!Z.\341	.\313\342$\203(\343	!\203(\344	.\313\342$\210*\202D\335+!\203D\3451?+	!0\202C\210\202D\210*\203\242*\247\203\212*\250\203Z*\202d\337\334\340	!!*_!\211/\334	!Z.\341	.\346\342$\203\206\343	\346\"\203\206\344	.\346\342$\210*\202\242\335*!\203\242\3471\235*	!0\202\241\210\202\242\210
:\203\265\350	\346
@#\210\350	\313
A#\210-	\207" [buffer window type dedicated alist preserve-size buffer-live-p window-live-p display-buffer-record-window window-buffer set-window-dedicated-p nil set-window-buffer (window frame) set-window-prev-buffers window-parameter quit-restore window-height window-width window-size frame same window-frame set-frame-height frame-height window-total-height set-frame-width frame-width window-total-width functionp (error) round frame-root-window window--resizable-p safe window-combined-p window-resize (error) t (error) window-preserve-size size width height parameter new-height delta new-width] 7 (#$ . 182908)])
(defalias 'window--maybe-raise-frame #[(frame) "\302!\211?\206\303 =\206\304\305 !\205\306\307 !=?\205$\310!)\207" [frame visible frame-visible-p selected-frame minibuffer-window-active-p selected-window window-frame minibuffer-selected-window raise-frame] 4])
#@164 If non-nil, `display-buffer' marks the windows it creates as dedicated.
The actual non-nil value of this variable will be copied to the
`window-dedicated-p' flag.
(defvar display-buffer-mark-dedicated nil (#$ . 185121))
#@52 Custom type for `display-buffer' action functions.
(defconst display-buffer--action-function-custom-type '(choice :tag "Function" (const :tag "--" ignore) (const display-buffer-reuse-window) (const display-buffer-pop-up-window) (const display-buffer-same-window) (const display-buffer-pop-up-frame) (const display-buffer-below-selected) (const display-buffer-at-bottom) (const display-buffer-in-previous-window) (const display-buffer-use-some-window) (const display-buffer-use-some-frame) (function :tag "Other function")) (#$ . 185347))
#@43 Custom type for `display-buffer' actions.
(defconst display-buffer--action-custom-type (byte-code "\301\302\303\304\302\305\306\302\307F\257\310BBBB\207" [display-buffer--action-function-custom-type cons :tag "Action" choice "Action functions" repeat "List of functions" ((alist :tag "Action arguments" :key-type symbol :value-type (sexp :tag "Value")))] 11) (#$ . 185891))
#@278 Overriding action to perform to display a buffer.
It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
function or a list of functions.  Each function should accept two
arguments: a buffer to display and an alist similar to ALIST.
See `display-buffer' for details.
(defvar display-buffer-overriding-action '(nil) (#$ . 186275))
(byte-code "\301\302\303\304#\210\305\306\307\310\311\312\313\314\315\257\316\304\317\320\321\322&\210\305\323\324\325\311\316\304\317\320\321\322&\207" [display-buffer--action-custom-type put display-buffer-overriding-action risky-local-variable t custom-declare-variable display-buffer-alist nil "Alist of conditional actions for `display-buffer'.\nThis is a list of elements (CONDITION . ACTION), where:\n\n CONDITION is either a regexp matching buffer names, or a\n  function that takes two arguments - a buffer name and the\n  ACTION argument of `display-buffer' - and returns a boolean.\n\n ACTION is a cons cell (FUNCTION . ALIST), where FUNCTION is a\n  function or a list of functions.  Each such function should\n  accept two arguments: a buffer to display and an alist of the\n  same form as ALIST.  See `display-buffer' for details.\n\n`display-buffer' scans this alist until it either finds a\nmatching regular expression or the function specified by a\ncondition returns non-nil.  In any of these cases, it adds the\nassociated action to the list of actions it will try." :type alist :key-type (choice :tag "Condition" regexp (function :tag "Matcher function")) :value-type :risky :version "24.1" :group windows display-buffer-base-action '(nil) "User-specified default action for `display-buffer'.\nIt should be a cons cell (FUNCTION . ALIST), where FUNCTION is a\nfunction or a list of functions.  Each function should accept two\narguments: a buffer to display and an alist similar to ALIST.\nSee `display-buffer' for details."] 12)
#@226 Default fallback action for `display-buffer'.
This is the action used by `display-buffer' if no other actions
specified, e.g. by the user options `display-buffer-alist' or
`display-buffer-base-action'.  See `display-buffer'.
(defconst display-buffer-fallback-action '((display-buffer--maybe-same-window display-buffer-reuse-window display-buffer--maybe-pop-up-frame-or-window display-buffer-in-previous-window display-buffer-use-some-window display-buffer-pop-up-frame)) (#$ . 188177))
(put 'display-buffer-fallback-action 'risky-local-variable t)
#@110 Retrieve ALIST entry corresponding to BUFFER-NAME.
ACTION is the action argument passed to `display-buffer'.
(defalias 'display-buffer-assq-regexp #[(buffer-name alist action) "\3062F\307\211\205D\n@\211@\211;\203'\f\307\310\311#)\266\203\2045\312!\203;\f\f\"\203;\313\306	A\"\210)\nA\211\204\f\307*0\207" [alist entry --dolist-tail-- key buffer-name inhibit-changing-match-data match nil t string-match functionp throw action] 8 (#$ . 188732)])
#@62 A `display-buffer' action for displaying in the same window.
(defvar display-buffer--same-window-action '(display-buffer-same-window (inhibit-same-window)) (#$ . 189205))
(put 'display-buffer--same-window-action 'risky-local-variable t)
#@60 A `display-buffer' action for displaying in another frame.
(defvar display-buffer--other-frame-action '((display-buffer-reuse-window display-buffer-pop-up-frame) (reusable-frames . 0) (inhibit-same-window . t)) (#$ . 189448))
(put 'display-buffer--other-frame-action 'risky-local-variable t)
#@4129 Display BUFFER-OR-NAME in some window, without selecting it.
BUFFER-OR-NAME must be a buffer or the name of an existing
buffer.  Return the window chosen for displaying BUFFER-OR-NAME,
or nil if no such window is found.

Optional argument ACTION, if non-nil, should specify a display
action.  Its form is described below.

Optional argument FRAME, if non-nil, acts like an additional
ALIST entry (reusable-frames . FRAME) to the action list of ACTION,
specifying the frame(s) to search for a window that is already
displaying the buffer.  See `display-buffer-reuse-window'.

If ACTION is non-nil, it should have the form (FUNCTION . ALIST),
where FUNCTION is either a function or a list of functions, and
ALIST is an arbitrary association list (alist).

Each such FUNCTION should accept two arguments: the buffer to
display and an alist.  Based on those arguments, it should
display the buffer and return the window.  If the caller is
prepared to handle the case of not displaying the buffer
and returning nil from `display-buffer' it should pass
(allow-no-window . t) as an element of the ALIST.

The `display-buffer' function builds a function list and an alist
by combining the functions and alists specified in
`display-buffer-overriding-action', `display-buffer-alist', the
ACTION argument, `display-buffer-base-action', and
`display-buffer-fallback-action' (in order).  Then it calls each
function in the combined function list in turn, passing the
buffer as the first argument and the combined alist as the second
argument, until one of the functions returns non-nil.

If ACTION is nil, the function list and the alist are built using
only the other variables mentioned above.

Available action functions include:
 `display-buffer-same-window'
 `display-buffer-reuse-window'
 `display-buffer-pop-up-frame'
 `display-buffer-pop-up-window'
 `display-buffer-in-previous-window'
 `display-buffer-use-some-window'
 `display-buffer-use-some-frame'

Recognized alist entries include:

 `inhibit-same-window' -- A non-nil value prevents the same
                          window from being used for display.

 `inhibit-switch-frame' -- A non-nil value prevents any other
                           frame from being raised or selected,
                           even if the window is displayed there.

 `reusable-frames' -- Value specifies frame(s) to search for a
                      window that already displays the buffer.
                      See `display-buffer-reuse-window'.

 `pop-up-frame-parameters' -- Value specifies an alist of frame
                              parameters to give a new frame, if
                              one is created.

 `window-height' -- Value specifies either an integer (the number
    of lines of a new window), a floating point number (the
    fraction of a new window with respect to the height of the
    frame's root window) or a function to be called with one
    argument - a new window.  The function is supposed to adjust
    the height of the window; its return value is ignored.
    Suitable functions are `shrink-window-if-larger-than-buffer'
    and `fit-window-to-buffer'.

 `window-width' -- Value specifies either an integer (the number
    of columns of a new window), a floating point number (the
    fraction of a new window with respect to the width of the
    frame's root window) or a function to be called with one
    argument - a new window.  The function is supposed to adjust
    the width of the window; its return value is ignored.

 `allow-no-window' -- A non-nil value indicates readiness for the case
    of not displaying the buffer and FUNCTION can safely return
    a non-window value to suppress displaying.

 `preserve-size' -- Value should be either (t . nil) to
    preserve the width of the window, (nil . t) to preserve its
    height or (t . t) to preserve both.

The ACTION argument to `display-buffer' can also have a non-nil
and non-list value.  This means to display the buffer in a window
other than the selected one, even if it is already displayed in
the selected window.  If called interactively with a prefix
argument, ACTION is t.
(defalias 'display-buffer #[(buffer-or-name &optional action frame) "\306!\203\n\202
\307!\310	\205	<?	<\204\311
\203*
\f\n\"\202\247\312\313\f!	#\314\f!\311\315\n\205@\316\205J\317BC\"B	\257 \320\315\321\322 \"\"!\320\315\321\323 \"\"\"\311#\324\f!\204\200\325\326!\210!\203\234#\204\234!@\f\"\"#!A\211!\204\205\327#!\205\245#.+\207" [buffer-or-name action inhibit-same-window split-window-keep-point buffer display-buffer-function bufferp get-buffer t nil display-buffer-assq-regexp buffer-name display-buffer--special-action append ((inhibit-same-window . t)) reusable-frames apply mapcar #[(x) "@\301!\203\fC\207\207" [x functionp] 2] cdr buffer-live-p error "Invalid buffer" windowp display-buffer-alist user-action special-action frame extra-action display-buffer-overriding-action display-buffer-base-action display-buffer-fallback-action actions functions alist window] 8 (#$ . 189748) (list (read-buffer "Display buffer: " (other-buffer)) (if current-prefix-arg t))])
#@173 Display buffer BUFFER preferably in another frame.
This uses the function `display-buffer' as a subroutine; see
its documentation for additional customization information.
(defalias 'display-buffer-other-frame #[(buffer) "\302	\303#\207" [buffer display-buffer--other-frame-action display-buffer t] 4 (#$ . 194929) "BDisplay buffer in other frame: "])
#@615 Display BUFFER in an existing frame that meets a predicate
(by default any frame other than the current frame).  If
successful, return the window used; otherwise return nil.

If ALIST has a non-nil `inhibit-switch-frame' entry, avoid
raising the frame.

If ALIST has a non-nil `frame-predicate' entry, its value is a
function taking one argument (a frame), returning non-nil if the
frame is a candidate; this function replaces the default
predicate.

If ALIST has a non-nil `inhibit-same-window' entry, avoid using
the currently selected window (only useful with a frame-predicate
that allows the selected frame).
(defalias 'display-buffer-use-some-frame #[(buffer alist) "\306\236A\206\307\310	!@\211\205\311\n\312\313\236A#\211\2051\314\f\302
%\315\236A\2041\316\n!\210+\207" [alist predicate frame window buffer display-buffer-mark-dedicated frame-predicate #[(frame) "\301 =?\205\302\303!\206\304!!?\207" [frame selected-frame window-dedicated-p get-lru-window frame-first-window] 3] filtered-frame-list get-lru-window nil inhibit-same-window window--display-buffer inhibit-switch-frame window--maybe-raise-frame] 7 (#$ . 195289)])
#@253 Display BUFFER in the selected window.
This fails if ALIST has a non-nil `inhibit-same-window' entry, or
if the selected window is a minibuffer window or is dedicated to
another buffer; in that case, return nil.  Otherwise, return the
selected window.
(defalias 'display-buffer-same-window #[(buffer alist) "\302\236A\206\303 \206\304 ?\205\305	\306 \307$\207" [alist buffer inhibit-same-window window-minibuffer-p window-dedicated-p window--display-buffer selected-window reuse] 5 (#$ . 196453)])
#@188 Conditionally display BUFFER in the selected window.
If `same-window-p' returns non-nil for BUFFER's name, call
`display-buffer-same-window' and return its value.  Otherwise,
return nil.
(defalias 'display-buffer--maybe-same-window #[(buffer alist) "\302\303!!\205\f\304	\"\207" [buffer alist same-window-p buffer-name display-buffer-same-window] 3 (#$ . 196966)])
#@873 Return a window that is already displaying BUFFER.
Return nil if no usable window is found.

If ALIST has a non-nil `inhibit-same-window' entry, the selected
window is not eligible for reuse.

If ALIST contains a `reusable-frames' entry, its value determines
which frames to search for a reusable window:
  nil -- the selected frame (actually the last non-minibuffer frame)
  A frame   -- just that frame
  `visible' -- all visible frames
  0   -- all frames on the current terminal
  t   -- all frames.

If ALIST contains no `reusable-frames' entry, search just the
selected frame if `display-buffer-reuse-frames' and
`pop-up-frames' are both nil; search all frames on the current
terminal if either of those variables is non-nil.

If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
event that a window on another frame is chosen, avoid raising
that frame.
(defalias 'display-buffer-reuse-window #[(buffer alist) "\306\236\211\203
	A\202*\n\307=\203\310 \202\n\203 \311\202*\203(\311\202*\312 
\313 =\203>\314\236A\204>\315 \202H\316\315 \317
\320\f#\"@\321!\205f\322
\323$\324\236A\204f\325\326!!\210+\207" [alist alist-entry pop-up-frames display-buffer-reuse-frames frames buffer reusable-frames graphic-only display-graphic-p 0 last-nonminibuffer-frame window-buffer inhibit-same-window selected-window delq get-buffer-window-list nomini window-live-p window--display-buffer reuse inhibit-switch-frame window--maybe-raise-frame window-frame window] 7 (#$ . 197341)])
#@233 Return special display action for BUFFER, if any.
If `special-display-p' returns non-nil for BUFFER, return an
appropriate display action involving `special-display-function'.
See `display-buffer' for the format of display actions.
(defalias 'display-buffer--special-action #[(buffer) "\205!\303\304	!!\211\205 \305\306\307\310\300\301\311\n<\205\nDFEDC)\207" [special-display-function buffer pars special-display-p buffer-name display-buffer-reuse-window lambda (buffer _alist) funcall quote] 9 (#$ . 198864)])
#@360 Display BUFFER in a new frame.
This works by calling `pop-up-frame-function'.  If successful,
return the window used; otherwise return nil.

If ALIST has a non-nil `inhibit-switch-frame' entry, avoid
raising the new frame.

If ALIST has a non-nil `pop-up-frame-parameters' entry, the
corresponding value is an alist of frame parameters to give the
new frame.
(defalias 'display-buffer-pop-up-frame #[(buffer alist) "\306\236A\307	\n\"\310\211
\f\205@rq\210\f \211)\205@\311
!\211
\205@\312
\305%\313\236A\204@\314
!\210-\207" [alist params pop-up-frame-alist pop-up-frame-function fun frame pop-up-frame-parameters append nil frame-selected-window window--display-buffer inhibit-switch-frame window--maybe-raise-frame window buffer display-buffer-mark-dedicated] 7 (#$ . 199389)])
#@368 Display BUFFER by popping up a new window.
The new window is created on the selected frame, or in
`last-nonminibuffer-frame' if no windows can be created there.
If successful, return the new window; otherwise return nil.

If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
event that the new window is created on another frame, avoid
raising the frame.
(defalias 'display-buffer-pop-up-window #[(buffer alist) "\305\306 !\206\305\307 !\310\311	\312\"\2031	\306 =\205[\307 \211\205[\305	!\205[\311	\312\"?\205[\313\314	\315\"\n\"\206B\313\316	\315\"\n\"\211\205[\317\300\n\f%\320\n\236A\204[\321\322!!\210*\207" [window frame alist buffer display-buffer-mark-dedicated window--frame-usable-p selected-frame last-nonminibuffer-frame nil frame-parameter unsplittable window--try-to-split-window get-largest-window t get-lru-window window--display-buffer inhibit-switch-frame window--maybe-raise-frame window-frame] 6 (#$ . 200199)])
#@295 Try displaying BUFFER based on `pop-up-frames' or `pop-up-windows'.

If `pop-up-frames' is non-nil (and not `graphic-only' on a
text-only terminal), try with `display-buffer-pop-up-frame'.

If that cannot be done, and `pop-up-windows' is non-nil, try
again with `display-buffer-pop-up-window'.
(defalias 'display-buffer--maybe-pop-up-frame-or-window #[(buffer alist) "\304=\203\305 \202\f\203\306	\n\"\206\205\307	\n\"\207" [pop-up-frames buffer alist pop-up-windows graphic-only display-graphic-p display-buffer-pop-up-frame display-buffer-pop-up-window] 3 (#$ . 201167)])
#@146 Try displaying BUFFER in a window below the selected window.
This either splits the selected window or reuses the window below
the selected one.
(defalias 'display-buffer-below-selected #[(buffer alist) "\306\307\310!\211\203	\311!=\203\312	\313\n$\206Q\314\306\315\"\204;\316\306\317\320 \n\"\211*\203;\312	\300\n
%\206Q\307\310!\211\205Q\321!?\205Q\312	\313\n
%)\207" [window buffer alist split-width-threshold split-height-threshold display-buffer-mark-dedicated nil window-in-direction below window-buffer window--display-buffer reuse frame-parameter unsplittable 0 window--try-to-split-window selected-window window-dedicated-p] 6 (#$ . 201760)])
#@269 Try displaying BUFFER in a window at the bottom of the selected frame.
This either reuses such a window provided it shows BUFFER
already, splits a window at the bottom of the frame or the
frame's root window, or reuses some window at the bottom of the
selected frame.
(defalias 'display-buffer-at-bottom #[(buffer alist) "\306\211\211\307\310!\210	\203\311\n\312\f
%\206n\313\306\314\"\2046\306\315\n\f\"\211)\2036\311\300\f
%\206n\313\306\314\"\204Z\3161I\317\320 !0\202K\210\306\211\203Z\311\300\f
%\206n\n\211\205n\321!?\205n\311\312\f
%+\207" [window bottom-window-shows-buffer bottom-window buffer alist display-buffer-mark-dedicated nil walk-window-tree #[(window) "\304\305\"\204 	\204\n\306!=\203\307\202 \204 \310\207" [window bottom-window-shows-buffer buffer bottom-window window-in-direction below window-buffer t nomini] 3] window--display-buffer reuse frame-parameter unsplittable window--try-to-split-window (error) split-window window--major-non-side-window window-dedicated-p split-width-threshold] 6 (#$ . 202440)])
#@873 Display BUFFER in a window previously showing it.
If ALIST has a non-nil `inhibit-same-window' entry, the selected
window is not eligible for reuse.

If ALIST contains a `reusable-frames' entry, its value determines
which frames to search for a reusable window:
  nil -- the selected frame (actually the last non-minibuffer frame)
  A frame   -- just that frame
  `visible' -- all visible frames
  0   -- all frames on the current terminal
  t   -- all frames.

If ALIST contains no `reusable-frames' entry, search just the
selected frame if `display-buffer-reuse-frames' and
`pop-up-frames' are both nil; search all frames on the current
terminal if either of those variables is non-nil.

If ALIST has a `previous-window' entry, the window specified by
that entry will override any other window found by the methods
above, even if that window never showed BUFFER before.
(defalias 'display-buffer-in-previous-window #[(buffer alist) "\306\236\302\236A	\203	A\202/\307=\203\310 \202\203%\311\202/\f\203-\311\202/\312 \313\211\313\3142\212\315\316 \317
#\313\211\205\210@\320!\236\203~\321!\204~\322 =\203u\n\204~\202~\323\314\324\"\210A\211\204L\313*0\210\325\236A\211\203\272\326!\203\272\321!\204\272\322 =\203\266\n\204\272\202\272\206\301\211\205\317\327\330$.\207" [alist alist-entry inhibit-same-window pop-up-frames display-buffer-reuse-frames frames reusable-frames graphic-only display-graphic-p 0 last-nonminibuffer-frame nil best window-list-1 frame-first-window nomini window-prev-buffers window-dedicated-p selected-window throw t previous-window window-live-p window--display-buffer reuse best-window second-best-window window --dolist-tail-- buffer] 6 (#$ . 203525)])
#@306 Display BUFFER in an existing window.
Search for a usable window, set that window to the buffer, and
return the window.  If no suitable window is found, return nil.

If ALIST has a non-nil `inhibit-switch-frame' entry, then in the
event that a window in another frame is chosen, avoid raising
that frame.
(defalias 'display-buffer-use-some-window #[(buffer alist) "\306\236A\307\310 !\206\307\311 !\312\n\313	#\206R\314\315\"	\205&\f\316 =?\205+\f)\206R\317\315\313	#\206R\314\320\"	\205D\f\316 =?\205I\f)\206R\317\320\313	#\321\f!\205]\322\f\305\"\211A@\321\f!\205\261<\203\232\3238\250\203\232\3238\324\f!V\203\232\3251\225\326\f\3238\324\f!Z\"0\202\231\210\202\232\210\327\f\330$\331\f!\210\332\236A\204\261\333\334\f!!\210-\207" [alist not-this-window frame buffer window quit-restore inhibit-same-window window--frame-usable-p selected-frame last-nonminibuffer-frame get-lru-window nil get-buffer-window visible selected-window get-largest-window 0 window-live-p window-parameter 3 window-total-height (error) window-resize window--display-buffer reuse window--even-window-sizes inhibit-switch-frame window--maybe-raise-frame window-frame quad] 6 (#$ . 205312)])
#@349 Display BUFFER in no window.
If ALIST has a non-nil `allow-no-window' entry, then don't display
a window at all.  This makes possible to override the default action
and avoid displaying the buffer.  It is assumed that when the caller
specifies a non-nil `allow-no-window' then it can handle a nil value
returned from `display-buffer' in this case.
(defalias 'display-buffer-no-window #[(_buffer alist) "\301\236A\205\302\207" [alist allow-no-window fail] 2 (#$ . 206528)])
#@856 Select buffer BUFFER in some window, preferably a different one.
BUFFER may be a buffer, a string (a buffer name), or nil.  If it
is a string not naming an existent buffer, create a buffer with
that name.  If BUFFER is nil, choose some other buffer.  Return
the buffer.

This uses `display-buffer' as a subroutine.  The optional ACTION
argument is passed to `display-buffer' as its ACTION argument.
See `display-buffer' for more information.  ACTION is t if called
interactively with a prefix argument, which means to pop to a
window other than the selected one even if the buffer is already
displayed in the selected window.

If the window to show BUFFER is not on the selected
frame, raise that window's frame and give it input focus.

Optional third arg NORECORD non-nil means do not put this buffer
at the front of the list of recently selected ones.
(defalias 'pop-to-buffer #[(buffer &optional action norecord) "\306!\307 \310\n\"\311!\211	=\204\312\f
\"\210\313
\"\210+\207" [buffer old-frame action window frame norecord window-normalize-buffer-to-switch-to selected-frame display-buffer window-frame select-frame-set-input-focus select-window] 4 (#$ . 207011) (list (read-buffer "Pop to buffer: " (other-buffer)) (if current-prefix-arg t))])
#@501 Select buffer BUFFER in some window, preferably the same one.
BUFFER may be a buffer, a string (a buffer name), or nil.  If it
is a string not naming an existent buffer, create a buffer with
that name.  If BUFFER is nil, choose some other buffer.  Return
the buffer.

Optional argument NORECORD, if non-nil means do not put this
buffer at the front of the list of recently selected ones.

Unlike `pop-to-buffer', this function prefers using the selected
window over popping up a new window or frame.
(defalias 'pop-to-buffer-same-window #[(buffer &optional norecord) "\303	\n#\207" [buffer display-buffer--same-window-action norecord pop-to-buffer] 4 (#$ . 208280)])
#@285 Read the name of a buffer to switch to, prompting with PROMPT.
Return the name of the buffer as a string.

This function is intended for the `switch-to-buffer' family of
commands since these need to omit the name of the current buffer
from the list of completions and default values.
(defalias 'read-buffer-to-switch #[(prompt) "\304 \305\306\307\310\216\311\312	\"\210\313\314p!\315 #,\207" [rbts-completion-table #1=#:setup-hook #2=#:fun prompt internal-complete-buffer-except #[nil "\303\302!\205\n<\205\304\302!\210\nB\211\207" [rbts-completion-table minibuffer-completion-table icomplete-with-completion-tables boundp make-local-variable] 2] nil #[nil "\302\303\"\210	 \207" [#1# #2# remove-hook minibuffer-setup-hook] 3] #[nil "\301\302\"\207" [#1# remove-hook minibuffer-setup-hook] 3] add-hook minibuffer-setup-hook read-buffer other-buffer confirm-nonexistent-file-or-buffer] 4 (#$ . 208955)])
#@309 Normalize BUFFER-OR-NAME argument of buffer switching functions.
If BUFFER-OR-NAME is nil, return the buffer returned by
`other-buffer'.  Else, if a buffer specified by BUFFER-OR-NAME
exists, return that buffer.  If no such buffer exists, create a
buffer with the name BUFFER-OR-NAME and return that buffer.
(defalias 'window-normalize-buffer-to-switch-to #[(buffer-or-name) "\203\302!\206\303!\304	!\210	)\207\305 \207" [buffer-or-name buffer get-buffer get-buffer-create set-buffer-major-mode other-buffer] 2 (#$ . 209880)])
(byte-code "\300\301\302\303\304\305\306\307\310\311&	\210\300\312\302\313\304\314\306\307\310\315&	\207" [custom-declare-variable switch-to-buffer-preserve-window-point nil "If non-nil, `switch-to-buffer' tries to preserve `window-point'.\nIf this is nil, `switch-to-buffer' displays the buffer at that\nbuffer's `point'.  If this is `already-displayed', it tries to\ndisplay the buffer at its previous position in the selected\nwindow, provided the buffer is currently displayed in some other\nwindow on any visible or iconified frame.  If this is t, it\nunconditionally tries to display the buffer at its previous\nposition in the selected window.\n\nThis variable is ignored if the buffer is already displayed in\nthe selected window or never appeared in it before, or if\n`switch-to-buffer' calls `pop-to-buffer' to display the buffer." :type (choice (const :tag "Never" nil) (const :tag "If already displayed elsewhere" already-displayed) (const :tag "Always" t)) :group windows :version "24.3" switch-to-buffer-in-dedicated-window "Allow switching to buffer in strongly dedicated windows.\nIf non-nil, allow `switch-to-buffer' to proceed when called\ninteractively and the selected window is strongly dedicated to\nits buffer.\n\nThe following values are recognized:\n\nnil - disallow switching; signal an error\n\nprompt - prompt user whether to allow switching\n\npop - perform `pop-to-buffer' instead\n\nt - undedicate selected window and switch\n\nWhen called non-interactively, `switch-to-buffer' always signals\nan error when the selected window is dedicated to its buffer and\nFORCE-SAME-WINDOW is non-nil." (choice (const :tag "Disallow" nil) (const :tag "Prompt" prompt) (const :tag "Pop" pop) (const :tag "Allow" t)) "25.1"] 10)
#@1591 Display buffer BUFFER-OR-NAME in the selected window.

WARNING: This is NOT the way to work on another buffer temporarily
within a Lisp program!  Use `set-buffer' instead.  That avoids
messing with the window-buffer correspondences.

If the selected window cannot display the specified buffer
because it is a minibuffer window or strongly dedicated to
another buffer, call `pop-to-buffer' to select the buffer in
another window.  In interactive use, if the selected window is
strongly dedicated to its buffer, the value of the option
`switch-to-buffer-in-dedicated-window' specifies how to proceed.

If called interactively, read the buffer name using the
minibuffer.  The variable `confirm-nonexistent-file-or-buffer'
determines whether to request confirmation before creating a new
buffer.

BUFFER-OR-NAME may be a buffer, a string (a buffer name), or nil.
If BUFFER-OR-NAME is a string that does not identify an existing
buffer, create a buffer with that name.  If BUFFER-OR-NAME is
nil, switch to the buffer returned by `other-buffer'.

If optional argument NORECORD is non-nil, do not put the buffer
at the front of the buffer list, and do not make the window
displaying it the most recently selected one.

If optional argument FORCE-SAME-WINDOW is non-nil, the buffer
must be displayed in the selected window when called
non-interactively; if that is impossible, signal an error rather
than calling `pop-to-buffer'.

The option `switch-to-buffer-preserve-window-point' can be used
to make the buffer appear at its last position in the selected
window.

Return the buffer switched to.
(defalias 'switch-to-buffer #[(buffer-or-name &optional norecord force-same-window) "\306!\211\307 =\204s\310 \203#\n\203\311\312!\210\202s\313	\"\210\202s\314 \315=\203=\n\2035\311\316!\210\202s\313	\"\210\202s	\317 \236
\320=\205L\321	\322\"\323\324	\"\210\f\203r
\315=\204b\203r\325\326 \fA@\315#\210\327\324\330\f8\"\210*\204|\331\326 !\210	q)\207" [buffer-or-name buffer force-same-window norecord entry switch-to-buffer-preserve-window-point window-normalize-buffer-to-switch-to window-buffer window-minibuffer-p user-error "Cannot switch buffers in minibuffer window" pop-to-buffer window-dedicated-p t "Cannot switch buffers in a dedicated window" window-prev-buffers already-displayed get-buffer-window 0 set-window-buffer nil set-window-start selected-window set-window-point 2 select-window displayed] 5 (#$ . 212169) (let ((force-same-window (cond ((window-minibuffer-p) nil) ((not (eq (window-dedicated-p) t)) 'force-same-window) ((cond ((null switch-to-buffer-in-dedicated-window) (let nil (user-error "Cannot switch buffers in a dedicated window"))) ((eq switch-to-buffer-in-dedicated-window 'prompt) (let nil (if (y-or-n-p (format "Window is dedicated to %s; undedicate it" (window-buffer))) (progn (set-window-dedicated-p nil nil) 'force-same-window) (user-error "Cannot switch buffers in a dedicated window")))) ((eq switch-to-buffer-in-dedicated-window 'pop) (let nil nil)) (t (let nil (set-window-dedicated-p nil nil) 'force-same-window))))))) (list (read-buffer-to-switch "Switch to buffer: ") nil force-same-window))])
#@794 Select the buffer specified by BUFFER-OR-NAME in another window.
BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
nil.  Return the buffer switched to.

If called interactively, prompt for the buffer name using the
minibuffer.  The variable `confirm-nonexistent-file-or-buffer'
determines whether to request confirmation before creating a new
buffer.

If BUFFER-OR-NAME is a string and does not identify an existing
buffer, create a new buffer with that name.  If BUFFER-OR-NAME is
nil, switch to the buffer returned by `other-buffer'.

Optional second argument NORECORD non-nil means do not put this
buffer at the front of the list of recently selected ones.

This uses the function `display-buffer' as a subroutine; see its
documentation for additional customization information.
(defalias 'switch-to-buffer-other-window #[(buffer-or-name &optional norecord) "\303\304	\303\n#)\207" [pop-up-windows buffer-or-name norecord t pop-to-buffer] 4 (#$ . 215332) (list (read-buffer-to-switch "Switch to buffer in other window: "))])
#@774 Switch to buffer BUFFER-OR-NAME in another frame.
BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
nil.  Return the buffer switched to.

If called interactively, prompt for the buffer name using the
minibuffer.  The variable `confirm-nonexistent-file-or-buffer'
determines whether to request confirmation before creating a new
buffer.

If BUFFER-OR-NAME is a string and does not identify an existing
buffer, create a new buffer with that name.  If BUFFER-OR-NAME is
nil, switch to the buffer returned by `other-buffer'.

Optional second arg NORECORD non-nil means do not put this
buffer at the front of the list of recently selected ones.

This uses the function `display-buffer' as a subroutine; see its
documentation for additional customization information.
(defalias 'switch-to-buffer-other-frame #[(buffer-or-name &optional norecord) "\303	\n#\207" [buffer-or-name display-buffer--other-frame-action norecord pop-to-buffer] 4 (#$ . 216379) (list (read-buffer-to-switch "Switch to buffer in other frame: "))])
#@470 Set the height in lines of the text display area of WINDOW to HEIGHT.
WINDOW must be a live window and defaults to the selected one.
HEIGHT doesn't include the mode line or header line, if any, or
any partial-height lines in the text display area.

Note that the current implementation of this function cannot
always set the height exactly, but attempts to be conservative,
by allocating more lines than are actually needed in the case
where some error may be present.
(defalias 'set-window-text-height #[(window height) "\304\305\"	\306!Z\211\307U?\205\310	^\311\n\"))\207" [window height delta window-min-height window-normalize-window t window-text-height 0 2 window-resize] 4 (#$ . 217413)])
#@122 Make selected window DELTA columns wider.
Interactively, if no argument is given, make selected window one
column wider.
(defalias 'enlarge-window-horizontally #[(delta) "\301\302\"\207" [delta enlarge-window t] 3 (#$ . 218124) "p"])
#@128 Make selected window DELTA columns narrower.
Interactively, if no argument is given, make selected window one
column narrower.
(defalias 'shrink-window-horizontally #[(delta) "\301\302\"\207" [delta shrink-window t] 3 (#$ . 218366) "p"])
#@802 Return the number of screen lines in the region.
The number of screen lines may be different from the number of actual lines,
due to line breaking, display table, etc.

Optional arguments BEG and END default to `point-min' and `point-max'
respectively.

If region ends with a newline, ignore it unless optional third argument
COUNT-FINAL-NEWLINE is non-nil.

The optional fourth argument WINDOW specifies the window used for obtaining
parameters such as width, horizontal scrolling, and so on.  The default is
to use the selected window's parameters.

Like `vertical-motion', `count-screen-lines' always uses the current buffer,
regardless of which buffer is displayed in WINDOW.  This makes possible to use
`count-screen-lines' in any buffer, whether or not it is currently displayed
in some window.
(defalias 'count-screen-lines #[(&optional beg end count-final-newline window) "\204e	\204\fd	U\203\304\207\212\214~\210	^\n\2044	]\206&`Sf\305U\2034	]S\2027	]}\210eb\210\306\307 \"T*\207" [beg end count-final-newline window 0 10 vertical-motion buffer-size] 3 (#$ . 218612)])
#@141 Return the height (in screen lines) of the buffer that WINDOW is displaying.
WINDOW must be a live window and defaults to the selected one.
(defalias 'window-buffer-height #[(window) "\301\302\"r\303!q\210\304\305edm$])\207" [window window-normalize-window t window-buffer 1 count-screen-lines] 6 (#$ . 219715)])
(byte-code "\300\301\302\303\304\305\306\307\310\311&	\210\300\312\302\313\304\305\306\307\310\311&	\210\300\314\315\316\306\307\304\317\310\311&	\210\300\320\321\322\306\307\304\323\310\311&	\207" [custom-declare-variable fit-window-to-buffer-horizontally nil "Non-nil means `fit-window-to-buffer' can resize windows horizontally.\nIf this is nil, `fit-window-to-buffer' never resizes windows\nhorizontally.  If this is `only', it can resize windows\nhorizontally only.  Any other value means `fit-window-to-buffer'\ncan resize windows in both dimensions." :type boolean :version "24.4" :group help fit-frame-to-buffer "Non-nil means `fit-window-to-buffer' can fit a frame to its buffer.\nA frame is fit if and only if its root window is a live window\nand this option is non-nil.  If this is `horizontally', frames\nare resized horizontally only.  If this is `vertically', frames\nare resized vertically only.  Any other non-nil value means\nframes can be resized in both dimensions." fit-frame-to-buffer-margins '(nil nil nil nil) "Margins around frame for `fit-frame-to-buffer'.\nThis specifies the numbers of pixels to be left free on the left,\nabove, on the right, and below a frame fitted to its buffer.  Set\nthis to avoid obscuring other desktop objects like the taskbar.\nThe default is nil for each side, which means to not add margins.\n\nThe value specified here can be overridden for a specific frame\nby that frame's `fit-frame-to-buffer-margins' parameter, if\npresent.  See also `fit-frame-to-buffer-sizes'." (list (choice :tag "Left" :value nil :format "%[LeftMargin%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Pixels" :size 5)) (choice :tag "Top" :value nil :format "%[TopMargin%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Pixels" :size 5)) (choice :tag "Right" :value nil :format "%[RightMargin%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Pixels" :size 5)) (choice :tag "Bottom" :value nil :format "%[BottomMargin%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Pixels" :size 5))) fit-frame-to-buffer-sizes '(nil nil nil nil) "Size boundaries of frame for `fit-frame-to-buffer'.\nThis list specifies the total maximum and minimum lines and\nmaximum and minimum columns of the root window of any frame that\nshall be fit to its buffer.  If any of these values is non-nil,\nit overrides the corresponding argument of `fit-frame-to-buffer'.\n\nOn window systems where the menubar can wrap, fitting a frame to\nits buffer may swallow the last line(s).  Specifying an\nappropriate minimum width value here can avoid such wrapping.\n\nSee also `fit-frame-to-buffer-margins'." (list (choice :tag "Maximum Height" :value nil :format "%[MaxHeight%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Lines" :size 5)) (choice :tag "Minimum Height" :value nil :format "%[MinHeight%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Lines" :size 5)) (choice :tag "Maximum Width" :value nil :format "%[MaxWidth%] %v  " (const :tag "None" :format "%t" nil) (integer :tag "Columns" :size 5)) (choice :tag "Minimum Width" :value nil :format "%[MinWidth%] %v\n" (const :tag "None" :format "%t" nil) (integer :tag "Columns" :size 5)))] 10)
#@56 Return MARGIN if it's a number between LEFT and RIGHT.
(defalias 'window--sanitize-margin #[(margin left right) "\247\205	\nZX\205\nX\205\207" [margin left right] 3 (#$ . 223257)])
#@734 Adjust size of FRAME to display the contents of its buffer exactly.
FRAME can be any live frame and defaults to the selected one.
Fit only if FRAME's root window is live.  MAX-HEIGHT, MIN-HEIGHT,
MAX-WIDTH and MIN-WIDTH specify bounds on the new total size of
FRAME's root window.  MIN-HEIGHT and MIN-WIDTH default to the values of
`window-min-height' and `window-min-width' respectively.

If the optional argument ONLY is `vertically', resize the frame
vertically only.  If ONLY is `horizontally', resize the frame
horizontally only.

The new position and size of FRAME can be additionally determined
by customizing the options `fit-frame-to-buffer-sizes' and
`fit-frame-to-buffer-margins' or the corresponding parameters of
FRAME.
(defalias 'fit-frame-to-buffer #[(&optional frame max-height min-height max-width min-width only) "\306\307!\203\f\306\310!\204\311\312!\210\313!\314\315!!\205d\316\315!!r\317\216\320	@\321\"\210\315!\322 \323 \310\324\325\"!@\326
\236A\3278@Z9\3308A@Z:\331
\236A\324\332\"\206g\211;@\203}\333;@\3349#\206\200\334\202\200@<;A@\203\231\333;A@\334:#\206\235\334\202\235A@=\3278>\327;8\203\3009\333\327;8<9#\206\274\334Z\202\304\3278?\3308@\330;8\203\347:\333\330;8=:#\206\343\334Z\202\353\3308A\335 B\336\337\340\"\341 ZCBZD>DZE\324\337\342\"\211\":\203\"\"@\"A@!\202$\")\"\343 F\344 GFGZH\345\n\346\"\347 I&\f&\203[&@\300=\203[I\334U\204[IS\202\\\334_*J\324\337\350\"\211(:\203v(@(A@!\202x()(\324\351\"\206\204)\211K@\247\203\224K@\f_\202\243L\247\203\241L\f_\202\243:LKA@\247\203\266KA@\f_\202\307M\247\203\303M\f_\202\307N\f_M\327K8\247\203\335\327K8_CZ\202\357O\247\203\355O_CZ\202\3579O\330K8\247\203\330K8_CZ\202P\247\203P_CZ\202Q_P\352\337\340\211>@\340&\211R@\353 \\/\354RA\355 \356 #1S\357=\204HT\360=\203N\337/\202_S\361=\204\\T\362=\203_\3371/\203\260U\204u\354/\363#\245_//O^P]\211/D\\/\"/\\\211V?V\203\243<\"V?ZZ]\"\202\257\"<W\203\257<\")1\203U\204\306\3541\f\363#\f\245\f_11L^M]\2111H\\1(1\\\211WAV\203\364=(WAZZ](\202(=W\203=()\364\"(#\210/\203\365\366 /\\D#/1\203-\365\367 1\\HG#1\370/\203EU\203>/\202G/\245\202G\366 1\203]U\203V1\202_1\f\245\202_\367 U$.%\207" [frame save-selected-window--state window char-width char-height monitor-attributes fboundp x-display-pixel-height display-monitor-attributes-list user-error "Cannot resize frame in non-graphic Emacs" window-normalize-frame window-live-p frame-root-window internal--before-with-selected-window #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord frame-char-width frame-char-height frame-parameter display geometry 2 3 workarea fit-frame-to-buffer-margins window--sanitize-margin 0 frame-pixel-width window-body-width nil t window-pixel-width left frame-pixel-height window-pixel-height window-parameter quit-restore tool-bar-height top fit-frame-to-buffer-sizes window-text-pixel-size window-right-divider-width + window-bottom-divider-width window-scroll-bar-height width vertically height horizontally -1 set-frame-position - frame-text-width frame-text-height set-frame-size display-width display-height margins left-margin top-margin workarea-width right-margin workarea-height bottom-margin frame-width window-extra-width extra-width fit-width frame-height window-height extra-height lines toolbar-extra-height sizes max-height min-height window-min-height max-width min-width window-min-width value window-size-fixed only frame-resize-pixelwise right bottom] 8 (#$ . 223455) nil])
#@1828 Adjust size of WINDOW to display its buffer's contents exactly.
WINDOW must be a live window and defaults to the selected one.

If WINDOW is part of a vertical combination, adjust WINDOW's
height.  The new height is calculated from the actual height of
the accessible portion of its buffer.  The optional argument
MAX-HEIGHT specifies a maximum height and defaults to the height
of WINDOW's frame.  The optional argument MIN-HEIGHT specifies a
minimum height and defaults to `window-min-height'.  Both
MAX-HEIGHT and MIN-HEIGHT are specified in lines and include mode
and header line and a bottom divider, if any.

If WINDOW is part of a horizontal combination and the value of
the option `fit-window-to-buffer-horizontally' is non-nil, adjust
WINDOW's width.  The new width of WINDOW is calculated from the
maximum length of its buffer's lines that follow the current
start position of WINDOW.  The optional argument MAX-WIDTH
specifies a maximum width and defaults to the width of WINDOW's
frame.  The optional argument MIN-WIDTH specifies a minimum width
and defaults to `window-min-width'.  Both MAX-WIDTH and MIN-WIDTH
are specified in columns and include fringes, margins, a
scrollbar and a vertical divider, if any.

If the optional argument `preserve-size' is non-nil, preserve the
size of WINDOW (see `window-preserve-size').

Fit pixelwise if the option `window-resize-pixelwise' is non-nil.
If WINDOW is its frame's root window and the option
`fit-frame-to-buffer' is non-nil, call `fit-frame-to-buffer' to
adjust the frame's size.

Note that even if this function makes WINDOW large enough to show
_all_ parts of its buffer you might not see the first part when
WINDOW was scrolled.  If WINDOW is resized horizontally, you will
not see the top of its buffer unless WINDOW starts at its minimum
accessible position.
(defalias 'fit-window-to-buffer #[(&optional window max-height min-height max-width min-width preserve-size) "\306\307\"\211\310!=\203#	\205\301\311!\n\f
	\312>\205 	&\207\313!)r\314\216\315)@\316\"\210*+\317 ,\320 -\321\322+#.\323+\"/\324+\"0\247\203w+\203e,_\202f+\203q\325!\202s1]\202\216+\203\204,2_\202\2062\326\322+$]\n\247\203\263.\327\322\322\211\211+&\\+\203\256,\n_\202\257\n^\202\301.\327\322\322\211\211+&\\\32234\330=\204(\331\332\"\204(\333 \203(\334\335\322\211\307\322\336 \307&A\337!\340 #3+\204\375\3343,\341#,\24533.U?\205\342!\210\343\n3^].Z\322+%\2105\205\342\322\307#\2024\205\331\307\332#?\205\333\322\307\"\205\321\307+#6
\247\203g+\203V-
_\202W
+\203a\344 \202c7]\202~+\203t-8_\202v8\326\322\211+$]\f\247\203\2436\327\307\322\211\211+&\\+\203\236-\f_\202\237\f^\202\2616\327\307\322\211\211+&\\\335\322\345 d\346 /+\203\304\347\202\306,_%@\350 \\9+\204\337\3349-\341#-\245990U?\205\342\307\"\210\343
\f690Z\\^]6Z\307+%\2105\205\342\307\211#,.\f\207" [window fit-frame-to-buffer max-height min-height max-width min-width window-normalize-window t frame-root-window window-frame (vertically horizontally) internal--before-with-selected-window #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord frame-char-height frame-char-width window-size nil window-body-height window-body-width window-safe-min-pixel-height window-min-size window-max-delta only window-size-fixed-p preserved window-combined-p + window-text-pixel-size frame-pixel-height window-scroll-bar-height window-bottom-divider-width -1 window-preserve-size window-resize-no-error window-safe-min-pixel-width window-start frame-pixel-width 1 window-right-divider-width save-selected-window--state window-resize-pixelwise pixelwise char-height char-width total-height body-height body-width window-safe-min-height window-min-height height fit-window-to-buffer-horizontally preserve-size total-width window-safe-min-width window-min-width width] 10 (#$ . 227214) nil])
#@107 Return t if WINDOW can be shrunk without shrinking other windows.
WINDOW defaults to the selected window.
(defalias 'window-safely-shrinkable-p #[(&optional window) "\303\206\304 !r\305\216\306	@\307\"\210\310 \311\n8\311\310\312 !8U\206*\n@\310\313 !@U,\207" [window save-selected-window--state edges internal--before-with-selected-window selected-window #[nil "\301!\207" [save-selected-window--state internal--after-with-selected-window] 2] select-window norecord window-edges 2 previous-window next-window] 4 (#$ . 231233)])
#@623 Shrink height of WINDOW if its buffer doesn't need so many lines.
More precisely, shrink WINDOW vertically to be as small as
possible, while still showing the full contents of its buffer.
WINDOW must be a live window and defaults to the selected one.

Do not shrink WINDOW to less than `window-min-height' lines.  Do
nothing if the buffer contains more lines than the present window
height, or if some of the window's contents are scrolled out of
view, or if shrinking this window would also shrink another
window, or if the window is the only window of its frame.

Return non-nil if the window was shrunk, nil otherwise.
(defalias 'shrink-window-if-larger-than-buffer #[(&optional window) "\301\302\"\303!\205\304e\"\205\305\306!\"\207" [window window-normalize-window t window-combined-p pos-visible-in-window-p fit-window-to-buffer window-total-height] 4 (#$ . 231776) nil])
#@57 Kill the current buffer and delete the selected window.
(defalias 'kill-buffer-and-window #[nil "\303 p\304\305\216\306\307\310\211$\210\311p!\205\303 \n=\205\312 ,\207" [delete-window-hook buffer-to-kill window-to-delete selected-window #[nil "\3001\301 0\207\210\302\207" [(error) delete-window nil] 1] #[nil "\3021rq\210\303\304	\305#)0\207\210\306\207" [buffer-to-kill delete-window-hook (error) remove-hook kill-buffer-hook t nil] 4] add-hook kill-buffer-hook t kill-buffer delete-window] 5 (#$ . 232670) nil])
(defvar window-group-start-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local window-group-start-function put permanent-local t] 4)
#@327 Return position at which display currently starts in the group of
windows containing WINDOW.  When a grouping mode (such as Follow Mode)
is not active, this function is identical to `window-start'.

WINDOW must be a live window and defaults to the selected one.
This is updated by redisplay or by calling `set-window*-start'.
(defalias 'window-group-start #[(&optional window) "\302!\203\n	!\207\303	!\207" [window-group-start-function window functionp window-start] 2 (#$ . 233377)])
(defvar window-group-end-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local window-group-end-function put permanent-local t] 4)
#@621 Return position at which display currently ends in the group of
windows containing WINDOW.  When a grouping mode (such as Follow Mode)
is not active, this function is identical to `window-end'.

WINDOW must be a live window and defaults to the selected one.
This is updated by redisplay, when it runs to completion.
Simply changing the buffer text or setting `window-group-start'
does not update this value.
Return nil if there is no recorded value.  (This can happen if the
last redisplay of WINDOW was preempted, and did not finish.)
If UPDATE is non-nil, compute the up-to-date position
if it isn't already recorded.
(defalias 'window-group-end #[(&optional window update) "\303!\203	\n\"\207\304	\n\"\207" [window-group-end-function window update functionp window-end] 3 (#$ . 234039)])
(defvar set-window-group-start-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local set-window-group-start-function put permanent-local t] 4)
#@417 Make display in the group of windows containing WINDOW start at
position POS in WINDOW's buffer.  When a grouping mode (such as Follow
Mode) is not active, this function is identical to `set-window-start'.

WINDOW must be a live window and defaults to the selected one.  Return
POS.  Optional third arg NOFORCE non-nil inhibits next redisplay from
overriding motion of point in order to display at this exact start.
(defalias 'set-window-group-start #[(window pos &optional noforce) "\304!\203\f	\n#\207\305	\n#\207" [set-window-group-start-function window pos noforce functionp set-window-start] 4 (#$ . 235020)])
(defvar recenter-window-group-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local recenter-window-group-function put permanent-local t] 4)
#@1002 Center point in the group of windows containing the selected window
and maybe redisplay frame.  When a grouping mode (such as Follow Mode)
is not active, this function is identical to `recenter'.

With a numeric prefix argument ARG, recenter putting point on screen line ARG
relative to the first window in the selected window group.  If ARG is
negative, it counts up from the bottom of the last window in the
group.  (ARG should be less than the total height of the window group.)

If ARG is omitted or nil, then recenter with point on the middle line of
the selected window group; if the variable `recenter-redisplay' is
non-nil, also erase the entire frame and redraw it (when
`auto-resize-tool-bars' is set to `grow-only', this resets the
tool-bar's height to the minimum height needed); if
`recenter-redisplay' has the special value `tty', then only tty frames
are redrawn.

Just C-u as prefix means put point in the center of the window
and redisplay normally--don't erase and redraw the frame.
(defalias 'recenter-window-group #[(&optional arg) "\302!\203\n	!\207\303	!\207" [recenter-window-group-function arg functionp recenter] 2 (#$ . 235825)])
(defvar pos-visible-in-window-group-p-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local pos-visible-in-window-group-p-function put permanent-local t] 4)
#@1215 Return non-nil if position POS is currently on the frame in the
window group containing WINDOW.  When a grouping mode (such as Follow
Mode) is not active, this function is identical to
`pos-visible-in-window-p'.

WINDOW must be a live window and defaults to the selected one.

Return nil if that position is scrolled vertically out of view.  If a
character is only partially visible, nil is returned, unless the
optional argument PARTIALLY is non-nil.  If POS is only out of view
because of horizontal scrolling, return non-nil.  If POS is t, it
specifies the position of the last visible glyph in the window group.
POS defaults to point in WINDOW; WINDOW defaults to the selected
window.

If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
where X and Y are the pixel coordinates relative to the top left corner
of the window.  The remaining elements are omitted if the character after
POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
off-window at the top and bottom of the screen line ("row") containing
POS, ROWH is the visible height of that row, and VPOS is the row number
(zero-based).
(defalias 'pos-visible-in-window-group-p #[(&optional pos window partially) "\304!\203\f	\n#\207\305	\n#\207" [pos-visible-in-window-group-p-function pos window partially functionp pos-visible-in-window-p] 4 (#$ . 237185)])
(defvar selected-window-group-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local selected-window-group-function put permanent-local t] 4)
#@189 Return the list of windows in the group containing the selected window.
When a grouping mode (such as Follow Mode) is not active, the
result is a list containing only the selected window.
(defalias 'selected-window-group #[nil "\301!\203	 \207\302 C\207" [selected-window-group-function functionp selected-window] 2 (#$ . 238812)])
(defvar move-to-window-group-line-function nil)
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local move-to-window-group-line-function put permanent-local t] 4)
#@417 Position point relative to the the current group of windows.
When a grouping mode (such as Follow Mode) is not active, this
function is identical to `move-to-window-line'.

ARG nil means position point at center of the window group.
Else, ARG specifies the vertical position within the window
group; zero means top of first window in the group, negative
means relative to the bottom of the last window in the group.
(defalias 'move-to-window-group-line #[(arg) "\302!\203\n	!\207\303	!\207" [move-to-window-group-line-function arg functionp move-to-window-line] 2 (#$ . 239339)])
#@193 Indicates the last recenter operation performed.
Possible values: `top', `middle', `bottom', integer or float numbers.
It can also be nil, which means the first value in `recenter-positions'.
(defvar recenter-last-op nil (#$ . 239929))
#@587 Cycling order for `recenter-top-bottom'.
A list of elements with possible values `top', `middle', `bottom',
integer or float numbers that define the cycling order for
the command `recenter-top-bottom'.

Top and bottom destinations are `scroll-margin' lines from the true
window top and bottom.  Middle redraws the frame and centers point
vertically within the window.  Integer number moves current line to
the specified absolute window-line.  Float number between 0.0 and 1.0
means the percentage of the screen space from the top.  The default
cycling order is middle -> top -> bottom.
(custom-declare-variable 'recenter-positions ''(middle top bottom) '(#$ . 240172) :type '(repeat (choice (const :tag "Top" top) (const :tag "Middle" middle) (const :tag "Bottom" bottom) (integer :tag "Line number") (float :tag "Percentage"))) :version "23.2" :group 'windows)
#@340 Move current buffer line to the specified window line.
With no prefix argument, successive calls place point according
to the cycling order defined by `recenter-positions'.

A prefix argument is handled like `recenter':
 With numeric prefix ARG, move current line to window-line ARG.
 With plain `C-u', move current line to window center.
(defalias 'recenter-top-bottom #[(&optional arg) "\203\306!\207	\n=\203\f\235A\206\f@\202\f@\307
]\310\311 \312\245!^\313=\2034\306 \202i\314=\203A\306!\202i\315=\203P\306\316Z!\202i\250\203[\306!\202i\317!\205i\306\320\321 _!!)\207" [arg this-command last-command recenter-last-op recenter-positions scroll-margin recenter 0 truncate window-body-height 4.0 middle top bottom -1 floatp round window-height this-scroll-margin] 4 (#$ . 241041) "P"])
(define-key global-map [12] 'recenter-top-bottom)
#@232 Position point relative to window.

With a prefix argument ARG, acts like `move-to-window-line'.

With no argument, positions point at center of window.
Successive calls position point at positions defined
by `recenter-positions'.
(defalias 'move-to-window-line-top-bottom #[(&optional arg) "\203\306!\207	\n=\203\f\235A\206\f@\202\f@\307
]\310\311 \312\245!^\313=\2035\314\306!\202j\315=\203B\306!\202j\316=\203Q\306\317Z!\202j\250\203\\\306!\202j\320!\205j\306\321\322 _!!)\207" [arg this-command last-command recenter-last-op recenter-positions scroll-margin move-to-window-line 0 truncate window-body-height 4.0 middle call-interactively top bottom -1 floatp round window-height this-scroll-margin] 4 (#$ . 241919) "P"])
(byte-code "\301\302\303#\210\304\305\306\307\310\311\312\313\314\315&	\207" [global-map define-key [134217842] move-to-window-line-top-bottom custom-declare-variable scroll-error-top-bottom nil "Move point to top/bottom of buffer before signaling a scrolling error.\nA value of nil means just signal an error if no more scrolling possible.\nA value of t means point moves to the beginning or the end of the buffer\n(depending on scrolling direction) when no more scrolling possible.\nWhen point is already on that position, then signal an error." :type boolean :group windows :version "24.1"] 10)
#@435 Scroll text of selected window upward ARG lines; or near full screen if no ARG.
If `scroll-error-top-bottom' is non-nil and `scroll-up' cannot
scroll window further, move cursor to the bottom line.
When point is already on that position, then signal an error.
A near full screen is `next-screen-context-lines' less than a full screen.
Negative ARG means scroll downward.
If ARG is the atom `-', scroll downward by nearly full screen.
(defalias 'scroll-up-command #[(&optional arg) "\204\302	!\207	\303=\203\304\305!\207\306	!\307W\203!\304\306	![!\207m\203)\302	!\207\31012\302	!0\207\210	\203:	y\207db\207" [scroll-error-top-bottom arg scroll-up - scroll-down-command nil prefix-numeric-value 0 (end-of-buffer)] 3 (#$ . 243284) "^P"])
(put 'scroll-up-command 'scroll-command t)
#@428 Scroll text of selected window down ARG lines; or near full screen if no ARG.
If `scroll-error-top-bottom' is non-nil and `scroll-down' cannot
scroll window further, move cursor to the top line.
When point is already on that position, then signal an error.
A near full screen is `next-screen-context-lines' less than a full screen.
Negative ARG means scroll upward.
If ARG is the atom `-', scroll upward by nearly full screen.
(defalias 'scroll-down-command #[(&optional arg) "\204\302	!\207	\303=\203\304\305!\207\306	!\307W\203!\304\306	![!\207o\203)\302	!\207\31012\302	!0\207\210	\203;	[y\207eb\207" [scroll-error-top-bottom arg scroll-down - scroll-up-command nil prefix-numeric-value 0 (beginning-of-buffer)] 3 (#$ . 244079) "^P"])
(put 'scroll-down-command 'scroll-command t)
#@197 Scroll text of selected window upward ARG lines; or one line if no ARG.
If ARG is omitted or nil, scroll upward by one line.
This is different from `scroll-up-command' that scrolls a full screen.
(defalias 'scroll-up-line #[(&optional arg) "\301\206\302!\207" [arg scroll-up 1] 2 (#$ . 244878) "p"])
(put 'scroll-up-line 'scroll-command t)
#@195 Scroll text of selected window down ARG lines; or one line if no ARG.
If ARG is omitted or nil, scroll down by one line.
This is different from `scroll-down-command' that scrolls a full screen.
(defalias 'scroll-down-line #[(&optional arg) "\301\206\302!\207" [arg scroll-down 1] 2 (#$ . 245228) "p"])
(put 'scroll-down-line 'scroll-command t)
#@100 Scroll the "other window" down.
For more details, see the documentation for `scroll-other-window'.
(defalias 'scroll-other-window-down #[(&optional lines) "\301\302=?\205\204\302\202\303![!\207" [lines scroll-other-window - prefix-numeric-value] 3 (#$ . 245582) "P"])
#@160 Move point to the beginning of the buffer in the other window.
Leave mark at previous position.
With arg N, put point N/10 of the way from the true beginning.
(defalias 'beginning-of-buffer-other-window #[(arg) "\303 \304 \305\216\306!\210\307\n!\210\310\311!+\207" [window orig-window arg selected-window other-window-for-scrolling #[nil "\301!\207" [orig-window select-window] 2] select-window beginning-of-buffer recenter (t)] 2 (#$ . 245866) "P"])
#@148 Move point to the end of the buffer in the other window.
Leave mark at previous position.
With arg N, put point N/10 of the way from the true end.
(defalias 'end-of-buffer-other-window #[(arg) "\303 \304 \305\216\306!\210\307\n!\210\310\311!+\207" [window orig-window arg selected-window other-window-for-scrolling #[nil "\301!\207" [orig-window select-window] 2] select-window end-of-buffer recenter (t)] 2 (#$ . 246329) "P"])
#@45 Timer used by delayed window autoselection.
(defvar mouse-autoselect-window-timer nil (#$ . 246767))
#@64 First mouse position recorded by delayed window autoselection.
(defvar mouse-autoselect-window-position-1 nil (#$ . 246874))
#@63 Last mouse position recorded by delayed window autoselection.
(defvar mouse-autoselect-window-position nil (#$ . 247005))
#@55 Last window recorded by delayed window autoselection.
(defvar mouse-autoselect-window-window nil (#$ . 247133))
#@252 When non-nil, special state of delayed window autoselection.
Possible values are `suspend' (suspend autoselection after a menu or
scrollbar interaction) and `select' (the next invocation of
`handle-select-window' shall select the window immediately).
(defvar mouse-autoselect-window-state nil (#$ . 247252))
#@92 Cancel delayed window autoselection.
Optional argument FORCE means cancel unconditionally.
(defalias 'mouse-autoselect-window-cancel #[(&optional force) "?\205	\306>\206	\307=\205\310\311\n!8\312>?\205.\313\211\314
!\203*\315
!\210\316\317\320\"\207" [force this-command last-input-event mouse-autoselect-window-state mouse-autoselect-window-position-1 mouse-autoselect-window-timer (handle-select-window handle-switch-frame) scroll-bar-toolkit-scroll 4 event-end (handle end-scroll) nil timerp cancel-timer remove-hook pre-command-hook mouse-autoselect-window-cancel] 4 (#$ . 247566)])
#@274 Start delayed window autoselection.
MOUSE-POSITION is the last position where the mouse was seen as returned
by `mouse-position'.  Optional argument WINDOW non-nil denotes the
window where the mouse was seen.  Optional argument SUSPEND non-nil
means suspend autoselection.
(defalias 'mouse-autoselect-window-start #[(mouse-position &optional window suspend) "\n\203\n\f\205
\304\306\307\n!\310\311#\211\207" [mouse-position mouse-autoselect-window-position window mouse-autoselect-window-window suspend mouse-autoselect-window-state run-at-time abs nil mouse-autoselect-window-select mouse-autoselect-window mouse-autoselect-window-timer] 4 (#$ . 248171)])
#@260 Select window with delayed window autoselection.
If the mouse position has stabilized in a non-selected window, select
that window.  The minibuffer window is selected only if the minibuffer
is active.  This function is run by `mouse-autoselect-window-timer'.
(defalias 'mouse-autoselect-window-select #[nil "\3061\315\300 \3071\310A@AA@#0\202\210\311\312\313!\203'\313 \204?	\203G\314A	\"\211:?\205;\n\315>?)\203G\316\311\317#\202\312\320=\204Y\f\247\203_\300 
\232\203_\316!\202\312	\203\251	\321 =\204\251\f\247\203\203\f\322Y\203|	=\204\203\232\203\251\323	!\203\220	\324 =\203\251\325\317!\210\323 ?\205\312\326\327	CDB\211\202\312	\203\264	\321 =\204\300\f\247\203\300\232\203\306\325\317!\202\312\316	\"*0\207\210\311\207" [mouse-position window coords mouse-autoselect-window-state mouse-autoselect-window mouse-autoselect-window-position-1 (error) (error) window-at nil fboundp menu-or-popup-active-p coordinates-in-window-p (left-margin right-margin) mouse-autoselect-window-start t suspend selected-window 0 window-minibuffer-p active-minibuffer-window mouse-autoselect-window-cancel select select-window mouse-autoselect-window-window mouse-autoselect-window-position unread-command-events] 5 (#$ . 248845)])
#@30 Handle select-window events.
(defalias 'handle-select-window #[(event) "\306!\211@\262\307	!?\206@\310 \206@\310	!\203!\311	!?\206@\n\247\205@\312=?\205@\313 \314\315!\210\f\316\f	\"\210\317\320\314\")?\205U\n\203N\321\322\323!\210\324\321!\210\325	!)\207" [event window mouse-autoselect-window mouse-autoselect-window-state position mouse-autoselect-window-position-1 event-start window-live-p window-minibuffer-p minibuffer-window-active-p select mouse-position mouse-autoselect-window-cancel t mouse-autoselect-window-start add-hook pre-command-hook nil run-hooks mouse-leave-buffer-hook message select-window] 3 (#$ . 250125) "^e"])
#@340 Return non-nil if lines in WINDOW are specifically truncated due to its width.
WINDOW must be a live window and defaults to the selected one.
Return nil if WINDOW is not a partial-width window
 (regardless of the value of `truncate-lines').
Otherwise, consult the value of `truncate-partial-width-windows'
 for the buffer shown in WINDOW.
(defalias 'truncated-partial-width-window-p #[(&optional window) "\302\303\"\304!?\205\"\305\306\307!\"\211\250\203 \310!	W\202!	)\207" [window t-p-w-w window-normalize-window t window-full-width-p buffer-local-value truncate-partial-width-windows window-buffer window-width] 5 (#$ . 250784)])
#@988 Control how Emacs chooses inferior process window sizes.
Emacs uses this function to tell processes the space they have
available for displaying their output.  After each window
configuration change, Emacs calls the value of
`window-adjust-process-window-size-function' for each process
with a buffer being displayed in at least one window.
This function is responsible for combining the sizes of the
displayed windows and returning a cons (WIDTH . HEIGHT)
describing the width and height with which Emacs will call
`set-process-window-size' for that process.  If the function
returns nil, Emacs does not call `set-process-window-size'.

This function is called with the process buffer as the current
buffer and with two arguments: the process and a list of windows
displaying process.  Modes can make this variable buffer-local;
additionally, the `adjust-window-size-function' process property
overrides the global or buffer-local value of
`window-adjust-process-window-size-function'.
(custom-declare-variable 'window-adjust-process-window-size-function ''window-adjust-process-window-size-smallest '(#$ . 251433) :type '(choice (const :tag "Minimum area of any window" window-adjust-process-window-size-smallest) (const :tag "Maximum area of any window" window-adjust-process-window-size-largest) (const :tag "Do not adjust process window sizes" ignore) function) :group 'windows :version "25.1")
#@195 Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS.  REDUCER is
a two-argument function used to combine the widths and heights of
the given windows.
(defalias 'window-adjust-process-window-size #[(reducer process windows) "\2054\306@!\307@!A\310\211\203/\f@
\n\306!\"
	\307!\"\fA\211\204*\n	*B\207" [windows height width window --dolist-tail-- reducer window-max-chars-per-line window-body-height nil] 5 (#$ . 252840)])
#@167 Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS.  Choose the
smallest area available for displaying PROCESS's output.
(defalias 'window-adjust-process-window-size-smallest #[(process windows) "\302\303	#\207" [process windows window-adjust-process-window-size min] 4 (#$ . 253330)])
#@166 Adjust the process window size of PROCESS.
WINDOWS is a list of windows associated with PROCESS.  Choose the
largest area available for displaying PROCESS's output.
(defalias 'window-adjust-process-window-size-largest #[(process windows) "\302\303	#\207" [process windows window-adjust-process-window-size max] 4 (#$ . 253669)])
#@150 Return an alist mapping processes to associated windows.
A window is associated with a process if that window is
displaying that processes's buffer.
(defalias 'window--process-window-list #[nil "\302 \303\211\203\304\305\306\307#\210*\207" [process-windows processes process-list nil walk-windows #[(window) "\306!	\n@\307\f!\203;\310\f!=\203;\f
\236\211\n\2030\n\211AB\241\210)\2026\fD
B)\311\202?\nA\211)\205F\202*\207" [window processes iter buffer process process-windows window-buffer process-live-p process-buffer nil procwin #1=#:v] 4] 1 t] 5 (#$ . 254006)])
#@72 Update process window sizes to match the current window configuration.
(defalias 'window--adjust-process-windows #[nil "\306\307!\205Q\310 \311\211\205P	@\211@\3121<r\313\n!q\210\314\n\315\"\206'\nA\"\211\2057\316\n\fA\f@#*0\202F\317\320
\"\210)\202G\210)	A\211\204\311*\207" [procwin --dolist-tail-- process window-adjust-process-window-size-function size #1=#:err fboundp process-list window--process-window-list nil (debug error) process-buffer process-get adjust-window-size-function set-process-window-size message "Error adjusting window size: %S"] 5 (#$ . 254606)])
(byte-code "\302\303\304\"\210\305\306\307#\210\305\310\311#\210\305\312\313#\210\305\314\315#\210\305\316\317#\210\305\320\321#\210\305\322\323#\210\305\324\325#\210\305\326\327#\210\305\330\331#\210\305	\306\332#\207" [ctl-x-map ctl-x-4-map add-hook window-configuration-change-hook window--adjust-process-windows define-key "0" delete-window "1" delete-other-windows "2" split-window-below "3" split-window-right "o" other-window "^" enlarge-window "}" enlarge-window-horizontally "{" shrink-window-horizontally "-" shrink-window-if-larger-than-buffer "+" balance-windows kill-buffer-and-window] 4)

Kontol Shell Bypass