Function: semantic-debug-set-source-location

semantic-debug-set-source-location is a byte-compiled function defined in debug.el.gz.

Signature

(semantic-debug-set-source-location ARG &rest ARGS)

Implementations

(semantic-debug-set-source-location (IFACE semantic-debug-interface) POINT) in `semantic/debug.el'.

Set the source location in IFACE to POINT.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/debug.el.gz
(cl-defmethod semantic-debug-set-source-location ((iface semantic-debug-interface) point)
  "Set the source location in IFACE to POINT."
  (with-current-buffer (oref iface source-buffer)
    (if (not (slot-boundp iface 'source-location))
	(oset iface source-location (make-marker)))
    (move-marker (oref iface source-location) point))
  )