Function: semantic-edits-flush-changes
semantic-edits-flush-changes is a byte-compiled function defined in
edit.el.gz.
Signature
(semantic-edits-flush-changes)
Documentation
Flush the changes in the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
(defun semantic-edits-flush-changes ()
"Flush the changes in the current buffer."
(let ((changes (semantic-changes-in-region (point-min) (point-max))))
(while changes
(semantic-edits-flush-change (car changes))
(setq changes (cdr changes))))
)