home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d512 / m2pascal.lha / M2Pascal / src / options.mod < prev    next >
Text File  |  1991-07-20  |  718b  |  30 lines

  1. IMPLEMENTATION MODULE options;
  2.  
  3. (*
  4.  
  5.    by : Greg Mumm
  6.  
  7.    This module deals with the various user adjustable options available
  8.    to anyone using the program. It's purpose is twofold:  
  9.  
  10.                 1) To allow other modules information as to what the options 
  11.                    are ( i.e. should the "begin" keyword go on the next
  12.                    line ? )
  13.  
  14.               * 2) To set the option information ("Enter line-length: " )
  15.  
  16.                     * Future implementation
  17. *)
  18.  
  19. BEGIN
  20.    
  21.     (* Right now the options are set in m2pascal.mod from the CLI.
  22.        This probably shouldn't be. Oh well. The settings below are
  23.        defaults.
  24.      *) 
  25.    
  26.  
  27.     OptionsRec . BeginNewLine := FALSE;
  28.  
  29. END options.
  30.