Function: unbury-buffer

unbury-buffer is an interactive and byte-compiled function defined in window.el.gz.

Signature

(unbury-buffer)

Documentation

Switch to the last buffer in the buffer list.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun unbury-buffer ()
  "Switch to the last buffer in the buffer list."
  (interactive)
  (switch-to-buffer (last-buffer)))