Woah....
You can only use "function" when you are declaring a function....
The list that you are using in ssget is not a function, but a list.
The alternative to the apostrophe in that case is:
- (ssget "_X" (quote ((0 . "LINE")(62 . 3))))
Sorry, for the confusion - I should've made that clearer.
Just to clarify, in the mapcar call for example, you could use:
- (mapcar (function +) (quote (1 2 3)) (quote (4 5 6)))
[ Just as an aside, I don't think the quote function is any quicker than the apostrophe ] |