Function: ecomplete-setup

ecomplete-setup is an autoloaded and byte-compiled function defined in ecomplete.el.gz.

Signature

(ecomplete-setup)

Documentation

Read the .ecompleterc file.

Source Code

;; Defined in /usr/src/emacs/lisp/ecomplete.el.gz
;;;###autoload
(defun ecomplete-setup ()
  "Read the .ecompleterc file."
  (when (file-exists-p ecomplete-database-file)
    (with-temp-buffer
      (let ((coding-system-for-read ecomplete-database-file-coding-system))
	(insert-file-contents ecomplete-database-file)
	(setq ecomplete-database (read (current-buffer)))))))