[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CR



    Date: 21 October 1979 19:26-EDT
    From: George J. Carrette <GJC at MIT-MC>
    To:   BUG-LISP
    Re:   CR

    Uhm, the only changes it would make in my code is it would add extra CR's to
    stuff inside |...|  The example is this:

    (DOCUMENT-MACRO DOC1 '|
    text......./
    kdkdkjfjdk/
    |

    )
    That is, I use the first hidden CR to make it easier to line up the document
    text. But slashing all the CR's I want is also a pain. So I'd rather
    have the extra CR ...
What's wrong with:
    (DOCUMENT-MACRO DOC1 '
|text.......
kdkdkjfjdk
|
    )

Which is less extra characters on each line?