home *** CD-ROM | disk | FTP | other *** search
/ Fatal Distractions! / fataldistractions.bin / chap01 / ccr / format.t < prev    next >
Text File  |  1993-07-10  |  183b  |  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.