Paredit mode is chopping my comments when they get to be longer than 70 characters like so:
;; a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b
becomes:
;; a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b a b
;; a b a b a b a b a b a b a b a b
I would like to know how to change that 70 to 120 and optionally turn it off entirely.
That most certainly is auto-fill-mode at work. To change the column at which emacs will split the line you can use M-x set-fill-column. If you want to change it permanently you can do it in your clojure-mode hook, something like:
On the other hand, if you want to turn it off something like:
Should do the trick.