Function: uniquify-buffer-base-name

uniquify-buffer-base-name is a byte-compiled function defined in uniquify.el.gz.

Signature

(uniquify-buffer-base-name)

Documentation

Return the base name of the current buffer.

Return nil if the buffer is not managed by uniquify.

Source Code

;; Defined in /usr/src/emacs/lisp/uniquify.el.gz
;; Used in desktop.el to save the non-uniquified buffer name
(defun uniquify-buffer-base-name ()
  "Return the base name of the current buffer.
Return nil if the buffer is not managed by uniquify."
  (and uniquify-managed
       (uniquify-item-base (car uniquify-managed))))