home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_oth / m2pascal.lzh / M2PASCAL / SRC / OPTIONS.MOD < prev    next >
Encoding:
Modula Implementation  |  1991-08-15  |  718 b   |  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.