Function: eudc-load-eudc

eudc-load-eudc is an autoloaded, interactive and byte-compiled function defined in eudc.el.gz.

Signature

(eudc-load-eudc)

Documentation

Load the Emacs Unified Directory Client.

This does nothing except loading eudc by autoload side-effect.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
;; The following installs a short menu for EUDC at Emacs startup.

;;;###autoload
(defun eudc-load-eudc ()
  "Load the Emacs Unified Directory Client.
This does nothing except loading eudc by autoload side-effect."
  (interactive)
  ;; FIXME: By convention, loading a file should "do nothing significant"
  ;; since Emacs may occasionally load a file for "frivolous" reasons
  ;; (e.g. to find a docstring), so having a function which just loads
  ;; the file doesn't seem very useful.
  nil)