vl-symbolp


(vl-symbolp expression)

This function returns whether the specified expression or variable evaluates as a Lisp symbol.

Arguments

expression  (any Lisp expression or variable) the Lisp item to be verified

Return

T if the (evaluated) expression or Lisp object is a symbol; NIL if not a Lisp symbol

Example

(vl-symbolp 123)  NIL
(vl-symbolp 'T)  T
(vl-symbolp 'MyVar)  T
(setq xxx 'MyVar)  MYVAR
(vl-symbolp xxx)  T
(vl-symbolp 'xxx)  T

Remarks




©  Bricsys NV. All rights reserved.