home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
GLEN
/
TSQED12.ZIP
/
QUOTE.QMA
< prev
next >
Wrap
Text File
|
1990-11-11
|
711b
|
31 lines
*
* Put > quotes to mail (etc) messages
* By Timo Salmi, Sun 11-Nov-1990
* To compile apply QMAC QUOTE.MAC QUOTE.QMA /A- /B
*
* Append a > at the beginning of a single line
@5 MacroBegin BegLine "> " BegLine CursorDown
* Quote the entire message from cursor down
@4 MacroBegin
loop:
JFalse endloop:
BegLine
"> "
BegLine
CursorDown
Jump loop:
endloop:
* Quote the entire message from cursor up
@6 MacroBegin
loop:
JFalse endloop:
BegLine
"> "
BegLine
CursorUp
Jump loop:
endloop: