Returns a string containing the name of a symbol
Supported Platforms: Windows and Mac OS
(vl-symbol-name symbol)
Type: Symbol
Any LISP symbol.
Type: String or error
A string containing the name of the supplied symbol argument, in uppercase.
(vl-symbol-name 'S::STARTUP) "S::STARTUP" (progn (setq sym 'my-var) (vl-symbol-name sym)) "MY-VAR" (vl-symbol-name 1) ; *** ERROR: bad argument type: symbolp 1