Function: org-defvaralias

org-defvaralias is a function alias for defvaralias, defined in eval.c.

This function is obsolete since 9.0; use defvaralias instead.

Signature

(org-defvaralias NEW-ALIAS BASE-VARIABLE &optional DOCSTRING)

Documentation

Make NEW-ALIAS a variable alias for symbol BASE-VARIABLE.

Aliased variables always have the same value; setting one sets the other. Third arg DOCSTRING, if non-nil, is documentation for NEW-ALIAS. If it is omitted or nil, NEW-ALIAS gets the documentation string of BASE-VARIABLE, or of the variable at the end of the chain of aliases, if BASE-VARIABLE is itself an alias. If NEW-ALIAS is bound, and BASE-VARIABLE is not, then the value of BASE-VARIABLE is set to that of NEW-ALIAS. The return value is BASE-VARIABLE.

If the resulting chain of variable definitions would contain a loop, signal a cyclic-variable-indirection error.

Aliases

org-defvaralias (obsolete since 9.0)