Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The result of <kbd>M-x describe function RET frame-parameter</kbd> is:</p> <blockquote> <p>frame-parameter is a built-in function.</p> <pre><code>(frame-parameter FRAME PARAMETER) </code></pre> <p>Return FRAME's value for parameter PARAMETER. If FRAME is nil, describe the currently selected frame.</p> </blockquote> <p>Also, have a look in the Elisp info manual for the node called <a href="http://www.gnu.org/software/emacs/manual/html_mono/elisp.html#Frame-Parameters" rel="nofollow noreferrer">"Frame/Frame Parameters"</a>. There isn't a specific reference to 'buried-buffer-list that I could find.</p> <p>You might be able to get the value of it by evaluating:</p> <pre><code>(cdr (frame-parameter FRAME 'buffer-list)) </code></pre> <p>since a "buried buffer" is just a buffer that's been pushed to the back of the list of buffers for a particular frame. See the documentation for <a href="http://www.gnu.org/software/emacs/manual/html_mono/elisp.html#The-Buffer-List" rel="nofollow noreferrer"><code>bury-buffer</code></a>:</p> <blockquote> <p>bury-buffer is an interactive compiled Lisp function in `window.el'.</p> <p>(bury-buffer &amp;optional BUFFER-OR-NAME)</p> <p>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 C-x b to select by default.</p> <p>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.</p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload