Function: ebrowse-redraw-marks

ebrowse-redraw-marks is an interactive and byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-redraw-marks START END)

Documentation

Display class marker signs in the tree between START and END.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-redraw-marks (start end)
  "Display class marker signs in the tree between START and END."
  (interactive "r")
  (save-excursion
    (with-silent-modifications
      (catch 'end
	(goto-char (point-min))
	(dolist (root ebrowse--tree)
	  (ebrowse-draw-marks-fn root start end))))
    (ebrowse-update-tree-buffer-mode-line)))