In emacs, I’ve read the following code snippet in simple.el:
(frame-parameter frame 'buried-buffer-list)
What is the exact meaning of the 'buried-buffer-list parameter? What it is used for?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The result of M-x describe function RET frame-parameter is:
Also, have a look in the Elisp info manual for the node called ‘Frame/Frame Parameters’. There isn’t a specific reference to ‘buried-buffer-list that I could find.
You might be able to get the value of it by evaluating:
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
bury-buffer: