Function: eudc-set
eudc-set is a byte-compiled function defined in eudc.el.gz.
Signature
(eudc-set VAR VAL)
Documentation
Set the most local (server, protocol or default) binding of VAR to VAL.
The current binding of VAR is also set to VAL.
Source Code
;; Defined in /usr/src/emacs/lisp/net/eudc.el.gz
(defun eudc-set (var val)
"Set the most local (server, protocol or default) binding of VAR to VAL.
The current binding of VAR is also set to VAL."
(cond
((not (eq 'unbound (eudc-variable-server-value var)))
(eudc-server-set var val))
((not (eq 'unbound (eudc-variable-protocol-value var)))
(eudc-protocol-set var val))
(t
(eudc-default-set var val)))
(set var val))