Function: semantic-decoration-move

semantic-decoration-move is a byte-compiled function defined in mode.el.gz.

Signature

(semantic-decoration-move DECO BEGIN END)

Documentation

Move the decoration DECO on the region between BEGIN and END.

Return DECO.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
(defsubst semantic-decoration-move (deco begin end)
  "Move the decoration DECO on the region between BEGIN and END.
Return DECO."
  (cl-assert (semantic-decoration-p deco))
  (move-overlay deco begin end)
  deco)