home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / ccr.zip / FORMAT.T < prev    next >
Text File  |  1993-01-23  |  206b  |  24 lines

  1. /*
  2.  * Formatting commands
  3.  */
  4.  
  5. /*
  6.  * End of paragraph
  7.  */
  8. P: function
  9. {
  10.     if (global.doublespace)
  11.         "\b";
  12.     else
  13.         "\n";
  14. }
  15.  
  16. /*
  17.  * Indent
  18.  */
  19. I: function
  20. {
  21.     if (global.indent)
  22.         "\t";
  23. }
  24.