home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / epmmac.zip / SMALL.E < prev    next >
Text File  |  1991-03-07  |  2KB  |  54 lines

  1. const SMALL = 1            -- SMALL says to assume no host support.
  2. include    'stdconst.e'
  3.  
  4. include    'colors.e'      -- Mnemonic color names & default colors defined here.
  5.  
  6. const                      -- (added because many users omit from MYCNF.)
  7. tryinclude 'mycnf.e'       -- User configuration goes here.
  8. include    'stdcnf.e'      -- Standard configuration; shouldn't be modified.
  9.  
  10. compile if WANT_DBCS_SUPPORT
  11. include    'epmdbcs.e'
  12. compile endif
  13.  
  14. include    'main.e'        -- This contains the DEFMAIN for the main .ex file
  15. compile if not VANILLA
  16. tryinclude 'mymain.e'      -- Optional user additions to DEFMAIN.
  17. compile endif
  18.  
  19. include    'select.e'
  20. compile if ALTERNATE_KEYSETS & not VANILLA
  21. tryinclude 'myselect.e' -- For other user mods to select_edit_keys.
  22. compile endif
  23.  
  24. include    'stdkeys.e'     -- Standard key definitions.
  25. compile if EVERSION < 5
  26. include    'window.e'      -- Windowing for non-PM versions of E.
  27. compile elseif MOUSE_SUPPORT = 1
  28. include    'mouse.e'       -- Mouse definition, only for EPM.
  29. compile else
  30. defc processmouse = sayerror 'Mouse support missing.'
  31. compile endif
  32. include    'stdprocs.e'    -- Standard functions and procedures.
  33. include    'markfilt.e'    -- Procedures for filtering a block, line or char. mark.
  34. include    'charops.e'     -- Mark operations for character marks.
  35.  
  36. include    'slnohost.e'    -- without host support
  37.  
  38. include    'stdcmds.e'     -- Standard commands (DEFC's).
  39.                            -- (Edit cmd uses variables defined in host routines.)
  40.  
  41. -- Put all new includes after this line (preferably in MYKEYS.E). -------------
  42. compile if not VANILLA
  43. tryinclude 'mykeys.e'      -- User stuff containing key DEFs.
  44. tryinclude 'mystuff.e'     -- Other user stuff.
  45. compile endif
  46.  
  47. compile if USE_APPEND
  48.    include  'dosutil.e'    -- DOSUTIL is required for APPEND support.
  49. compile endif
  50.  
  51. compile if ALTERNATE_KEYSETS & not VANILLA
  52. tryinclude 'mykeyset.e' -- For entirely new keysets defined by power users.
  53. compile endif
  54.