Message 1 of 2

Not applicable
05-28-2015
08:50 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there an easy way to change the indentation of a section of code?
I frequently have to add an if or cond and then have to change the indentation.
Example -
(defun C:TEST ()
(princ "\nThis is a test.")
(princ)
)
To - Add if to command then indent the princ line.
(defun C:TEST ()
(if T
(princ "\nThis is a test of True.")
)
(princ)
)
Solved! Go to Solution.