Function: semantic-debug-unhighlight

semantic-debug-unhighlight is a byte-compiled function defined in debug.el.gz.

Signature

(semantic-debug-unhighlight ARG &rest ARGS)

Implementations

(semantic-debug-unhighlight (IFACE semantic-debug-interface)) in `semantic/debug.el'.

Remove all debugging overlays.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/debug.el.gz
(cl-defmethod semantic-debug-unhighlight ((iface semantic-debug-interface))
  "Remove all debugging overlays."
  (mapc #'delete-overlay (oref iface overlays))
  (oset iface overlays nil))