Function: ebrowse-set-mark-props

ebrowse-set-mark-props is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-set-mark-props START END TREE)

Documentation

Set text properties for class marker signs between START and END.

TREE denotes the class shown.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-set-mark-props (start end tree)
  "Set text properties for class marker signs between START and END.
TREE denotes the class shown."
  (add-text-properties
   start end
   `(mouse-face highlight ebrowse-what mark ebrowse-tree ,tree
		help-echo "double-mouse-1: mark/unmark"))
  (ebrowse-set-face start end 'ebrowse-tree-mark))