Function: eudc-get-attribute-list

eudc-get-attribute-list is an interactive and byte-compiled function defined in eudc.el.gz.

Signature

(eudc-get-attribute-list)

Documentation

Return a list of valid attributes for the current server.

When called interactively the list is formatted in a dedicated buffer otherwise a list of symbols is returned.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(defun eudc-get-attribute-list ()
  "Return a list of valid attributes for the current server.
When called interactively the list is formatted in a dedicated buffer
otherwise a list of symbols is returned."
  (interactive)
  (if eudc-list-attributes-function
      (let ((entries (funcall eudc-list-attributes-function
			      (called-interactively-p 'interactive))))
	(if entries
	    (if (called-interactively-p 'interactive)
		(eudc-display-records entries t)
	      entries)))
    (error "The %s protocol has no support for listing attributes" eudc-protocol)))