Function: semantic-change-function

semantic-change-function is an autoloaded and byte-compiled function defined in edit.el.gz.

Signature

(semantic-change-function START END LENGTH)

Documentation

Provide a mechanism for semantic tag management.

Argument START, END, and LENGTH specify the bounds of the change.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
;;; Change State management
;;
;; Manage a series of overlays that define changes recently
;; made to the current buffer.
;;;###autoload
(defun semantic-change-function (start end length)
  "Provide a mechanism for semantic tag management.
Argument START, END, and LENGTH specify the bounds of the change."
   (setq semantic-unmatched-syntax-cache-check t)
   (let ((inhibit-point-motion-hooks t)
	 )
     (save-match-data
       (run-hook-with-args 'semantic-change-functions start end length)
       )))