Function: ede-commit

ede-commit is a byte-compiled function defined in config.el.gz.

Signature

(ede-commit ARG &rest ARGS)

Implementations

((config ede-extra-config)) in `ede/config.el'.

Commit all changes to the configuration to disk.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
(cl-defmethod ede-commit ((config ede-extra-config))
  "Commit all changes to the configuration to disk."
  ;; So long as the user is trying to safe this config, make sure they can
  ;; get at it again later.
  (let ((dir (file-name-directory (oref config file))))
    (ede-check-project-directory dir))

  (eieio-persistent-save config))