Function: msb--format-title

msb--format-title is a byte-compiled function defined in msb.el.gz.

Signature

(msb--format-title TOP-FOUND-P DIR NUMBER-OF-ITEMS)

Documentation

Format a suitable title for the menu item.

Source Code

;; Defined in /usr/src/emacs/lisp/msb.el.gz
(defun msb--format-title (top-found-p dir number-of-items)
  "Format a suitable title for the menu item."
  (format (if top-found-p "%s... (%d)" "%s (%d)")
	  (abbreviate-file-name dir) number-of-items))