Function: ebrowse-print-statistics-line

ebrowse-print-statistics-line is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-print-statistics-line TITLE VALUE)

Documentation

Print a line in the statistics buffer.

TITLE is the title of the line, VALUE is a number to be printed after that.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-print-statistics-line (title value)
  "Print a line in the statistics buffer.
TITLE is the title of the line, VALUE is a number to be printed
after that."
  (insert title)
  (indent-to 40)
  (insert (format "%d\n" value)))