Function: eudc-bookmark-server

eudc-bookmark-server is an interactive and byte-compiled function defined in eudc.el.gz.

Signature

(eudc-bookmark-server SERVER PROTOCOL)

Documentation

Add SERVER using PROTOCOL to the EUDC servers hotlist.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(defun eudc-bookmark-server (server protocol)
  "Add SERVER using PROTOCOL to the EUDC `servers' hotlist."
  (interactive "sDirectory server: \nsProtocol: ")
  (if (member (cons server protocol) eudc-server-hotlist)
      (error "%s:%s is already in the hotlist" protocol server)
    (setq eudc-server-hotlist (cons (cons server protocol) eudc-server-hotlist))
    (eudc-install-menu)
    (if eudc-ignore-options-file
	(warn "Not saving bookmark due to `eudc-ignore-options-file'\
 customization.  Instead, customize `eudc-server-hotlist' to include %s:%s"
	      protocol server)
      (eudc-save-options))))