Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Working with the Format Options, I have found that the entry after a PROGN does not go to the next line. So, I am getting this:
(IF (somthing)
(PROGN (do this)
(and do this)
)
)
When what I want is this:
(IF (something)
(PROGN
(do this)
(and do this)
)
)
Everything else formats the 2-space indention correctly.
Let me know if you know the setting I am missing.
Solved! Go to Solution.