You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The general feeling is that the format command breaks lines to easily. It would be better if it preferred to print and print things as one line, and only breaks lines when it needs to.
For example, this should be preferred (since it fits on one line):
(defun (wierd) (if P (eq X 1) (eq X 2)))
Over this (which is what is currently produced):
(defun (wierd)
(if P
(eq X 1)
(eq X 2)))
The text was updated successfully, but these errors were encountered:
The general feeling is that the
format
command breaks lines to easily. It would be better if it preferred to print and print things as one line, and only breaks lines when it needs to.For example, this should be preferred (since it fits on one line):
Over this (which is what is currently produced):
The text was updated successfully, but these errors were encountered: