Message 1 of 6
SSGET "X" formatting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can anyone tell me why this fails
_$ (setq PLineSS (ssget "x" '((-4 . "<AND") (0 . "LWPOLYLINE") (CONS 8 "AC*") (-4 . "AND>"))))
; error: bad SSGET list
and this works?
_$ (setq PLineSS (ssget "x" '((-4 . "<AND") (0 . "LWPOLYLINE") (8 . "AC*") (-4 . "AND>"))))
<Selection set: 2e>
If I do (CONS 8 "AC*") all by itself, it returns (8 . "AC*"), so it seems the same to me.
TIA