vl-symbol-value


(vl-symbol-value symbol)

This function returns the value of a Lisp symbol.

Arguments

symbol  (symbol) any Lisp symbol

Return

the Lisp value of symbol

Example

(setq var 123)
(vl-symbol-value 'var)  returns 123

Remarks

significantly faster than (eval), as it does not call the Lisp evaluator



©  Bricsys NV. All rights reserved.