home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / epmmac.zip / READ.ME < prev    next >
Text File  |  1996-02-05  |  24KB  |  513 lines

  1. There are three sample configuration files included in this directory.
  2. MYCNF.SMP is a simple example MYCNF.E.  EPMGCNF.SMP is the configuration
  3. file used to build the .ex files shipped with the OS/2 2.x Enhanced Editor.
  4. OS2TOOLS.CFG is the MYCNF.E used to build the .ex files included with the
  5. EPM package as shipped internally to IBM, and used by EPM 6 (EPMBETA).
  6.  
  7. Note that in order to be as general as possible, many features are made
  8. switchable at runtime in the shipped .ex files so that users who don't
  9. want to recompile the macros needn't.  If you *do* recompile, then
  10. the switchability will be lost unless you explicitly enable it.  For
  11. example, line vs. stream mode:  people used to line based editors will
  12. prefer line mode; people used to word processors will prefer stream mode,
  13. and few people will want to dynamically change between the two paradigms.
  14. So it makes more sense to configure it the way you prefer, and not waste
  15. the overhead of run-time checks and extra code.
  16.  
  17. Also note that 5.51 users should recompile both EPM and EXTRA when changing
  18. any configuration constants related to the menu choices, as the menus are
  19. contained in EXTRA.EX but the commands used are (mostly) defined in
  20. EPM.EX, so if the two files are not in synch, you might get "Unknown command".
  21. EPM 6 users should not have EXTRA_EX set in their MYCNF.E, since EPM 6 no
  22. longer has a 64k limit on *.ex files, and so there's no need to split the code.
  23.  
  24. A description of each file in E_MACROS is appended at the end of this file.
  25.  
  26. Answers to some common questions:
  27.  
  28. :QUESTION.
  29.   While trying to recompile the macros, I got the error message:
  30.      EX code size too large
  31.  
  32. :ANSWER.
  33.   The current set of macros won't fit into a single .ex file, which is
  34.   limited to 64k of code in EPM 5.51.  We've split EPM.EX into EPM.EX
  35.   and EXTRA.EX. If you add to your MYCNF.E
  36.      const
  37.         EXTRA_EX = 1
  38.  
  39.   and recompile both EPM.E and EXTRA.E, then EXTRA.EX will automatically
  40.   be linked in at run time.  (EXTRA.E includes a MYEXTRA.E if it exists,
  41.   so if space is still tight you can move any DEFCs or DEFPROCs from
  42.   MYSTUFF.E to MYEXTRA.E.  DEFLOADs, DEFSELECTs, DEFMODIFYs and key
  43.   definitions should stay where they are.)
  44.  
  45. :QUESTION.
  46.   I am writing some C source code in the EPM editor and am
  47.   getting a bit tired of erasing EPM's C add-ons.  How can I
  48.   turn this off?
  49.  
  50. :ANSWER.
  51.   You can turn it on and off dynamically by entering the command
  52.      EXPAND OFF
  53.   on the EPM command line.  If you're using EPM (or the Enhanced Editor)
  54.   as shipped, and don't want to recompile the macros, you can make this
  55.   the default by doing the following:
  56.      1.  Create a PROFILE.ERX in your EPMPATH (or PATH) containing:
  57.          /* EPM profile */
  58.          'expand off'
  59.      2.  On the EPM command line, enter:  PROFILE ON
  60.      3.  Select Options / Save Options.
  61.  
  62.   For the current EPM version 6.xx, replace steps 2 and 3 with:
  63.      Bring up EPM's Settings dialog, select the Misc. page, select
  64.      Rexx Profile so that it's checked, and close the Settings dialog.
  65.  
  66.   If you're compiling the macros, then you can make the syntax expansion
  67.   start out turned off by adding to your MYCNF.E:
  68.    const
  69.       my_EXPAND_ON = 0  -- Start out off; default is on.
  70.  
  71.   or you can omit the support for any language completely by including
  72.   one of:
  73.    const
  74.       C_SYNTAX_ASSIST = 0              -- Default for C is 1
  75.       E_SYNTAX_ASSIST = 0              -- Default for E is 1
  76.       P_SYNTAX_ASSIST = 0              -- Default for Pascal is 1
  77.       REXX_SYNTAX_ASSIST = 0           -- Default for Rexx is 0
  78.  
  79.   or, if you don't have a MYKEYSET.E, you can omit support for all of
  80.   them by including:
  81.    const
  82.       ALTERNATE_KEYSETS = 0            -- Default is 1
  83.  
  84.   Then recompile the macros, as described in the EPM User's Guide
  85.   (enter VIEW EPMUSERS to see it).  Note that the syntax assist
  86.   supports a number of different programming styles; if it's
  87.   really the style that you object to rather than the fact that
  88.   anything is added, enter the following command to see a list
  89.   of configuration flags you can set to modify the style:
  90.      view epmusers C_SYNTAX_ASSIST
  91.   (or substitute the appropriate language).
  92.  
  93. :QUESTION.
  94.   When I try WYSIWYG printing, I get no output or a blank page.
  95.  
  96. :ANSWER.
  97.   Two things to check:
  98.    - If you're printing to a LAN printer, your machine and the LAN server
  99.      must be using exactly the same printer driver, or things might not
  100.      work.  (I believe this is documented in the LAN pubs.)
  101.    - WYSIWYG stands for "What You See Is What You Get".  If you have a
  102.      white or light foreground color, it won't show up on the default
  103.      background color.  Try selecting black on white.
  104.  
  105. :QUESTION.
  106.   Why are buttons greyed in the print dialog?
  107.  
  108. :ANSWER.
  109.   EPM prints to a queue for WYSIWYG printing, and to a device (e.g.,
  110.   LPT1) when printing in draft mode.  If one of these is not defined
  111.   for a printer, then the corresponding button will not be selectable.
  112.  
  113. :QUESTION.
  114.   When I invoke EPM I get an icon in the Window Viewer, but when I
  115.   select it nothing happens.  Any thoughts?
  116.  
  117. :ANSWER.
  118.   It's the fault of the viewer.  They subclass the icon, and don't give
  119.   us anything that a "nicely behaved" icon isn't supposed to get.
  120.  
  121.   You can configure the system so that all icons minimize to the desktop,
  122.   or you can configure just EPM.
  123.  
  124.   If you open "OS/2 System", then open "System Setup", then open "Settings"
  125.   you'll see a Window page that lets you specify whether minimized windows
  126.   should appear on the desktop (as they do in OS/2 1.3), or in the
  127.   "Minimized Window Viewer", or just be hidden.  This sets the default
  128.   action for the system.  Some objects have a separate setting that can
  129.   override the default.  If you open the Settings for the real program as
  130.   found via the Drives object, you won't see this (no Window page on the
  131.   Settings notebook), but if you create a Program object that points to
  132.   EPM.EXE you will.
  133.  
  134. :QUESTION.
  135.   How can I edit host files on other than the 'A' session?
  136.  
  137. :ANSWER.
  138.   The default host interface (SAVELOAD.E) only accesses the first host
  139.   session.  E3EMUL will let you access any host session.  Add the
  140.   following to MYCNF.E and then recompile:
  141.      const
  142.         HOST_SUPPORT = 'EMUL'
  143.         USING = 'CM'         -- (or 'IBM', or whatever.  See E3EMUL SCRIPT.)
  144.         my_HOSTCOPY = 'AC'   -- (for example; the default is ALMCOPY)
  145.  
  146.   USING = 'CM' uses ALMCOPY.EXE (or the value of my_HOSTCOPY) as the file
  147.   transfer command; USING = 'IBM' uses SEND/RECEIVE.  You must use the
  148.   latter for MVS files.
  149.  
  150.   If you don't have room for E3EMUL, you could elect to have it linked in
  151.   externally.  Add the following line to your MYCNF.E, then recompile
  152.   both EPM and E3EMUL:
  153.      LINK_HOST_SUPPORT = 1
  154.  
  155. :QUESTION.
  156.   I am unable to edit any files on my H: drive.  Why is this?
  157.  
  158. :ANSWER.
  159.   By default, H: is used to refer to the host system.  If you do not edit
  160.   host files, then add the following to MYCNF.E:
  161.      const
  162.         HOST_SUPPORT = ''      -- Omit host support
  163.  
  164.   If you wish to be able to load and save host files directly from your E
  165.   session, then you can change the drive letter used to refer to the host.
  166.   If you use the standard SAVELOAD routines, then you can do this by adding
  167.   the following to MYCNF.E:
  168.      const
  169.         HOSTDRIVE = 'V:'      -- Use V: to refer to VM files
  170.  
  171.   If you use the enhanced host support of E3EMUL, (HOST_SUPPORT = 'EMUL'
  172.   in your MYCNF.E) then you can do this by adding the following to MYCNF.E:
  173.      const
  174.         my_HOSTDRIVE = 'V'      -- Use V: to refer to VM files
  175.  
  176.   Note:  For SAVELOAD, you set HOSTDRIVE to 'x:' (it needs the colon); for
  177.   E3EMUL you set my_HOSTDRIVE to 'x' (it doesn't take the colon).
  178.  
  179.   If you use E3EMUL, instead of changing the host drive letter, you may
  180.   choose to make the host logical terminal ID required, by adding to MYCNF.E:
  181.      const
  182.         HOST_LT_REQUIRED = 1
  183.  
  184.   This means that H: will refer to the local H drive on the workstation,
  185.   and HA:, HB:, etc. will refer to the VM or MVS host.
  186.  
  187. :QUESTION.
  188.   What is OK to place in MYCNF.E?
  189.  
  190. :ANSWER.
  191.   MYCNF.E is a configuration file that is included by many .E files.
  192.   Therefore, it should contain *nothing* other than CONST, SET and DEFINE
  193.   statements.  If you placed executable code in MYCNF.E, at best you
  194.   would be wasting space since the code would be duplicated in all your
  195.   .ex files; at worst, you'd break various things depending on what code
  196.   you included.
  197.  
  198. :QUESTION.
  199.   I got a SYS3175.  Can you fix it?
  200.  
  201. :ANSWER.
  202.   In order to track down the problem, we need at a minimum the values of
  203.   the CSLIM, CS and IP (or CS:EIP) registers from the Trap display, the
  204.   name of the module in error (e.g., ETKE551.DLL), and the date of your
  205.   EPM.EXE and ETK*.DLLs.  If you have the current version of EPM, the
  206.   VersionCheck command will give you the timestamp of when each module
  207.   was built.  This is best, because there's no chance of error if the
  208.   files had the date changed after they left our hands.
  209.  
  210.   If it's repeatable, please give the steps needed to reproduce it.
  211.   If not, a general description of what you were doing immediately
  212.   before the trap.
  213.  
  214. :QUESTION.
  215.   I opened an EPM window from LaMail...
  216.  
  217. :ANSWER.
  218.   No you didn't.  EPM and LaMail are two separate applications that are
  219.   both built on top of the E Toolkit.  When you open an edit window from
  220.   LaMail, it's a LaMail edit window.  You need not have EPM on your
  221.   system to do this, only the E Toolkit (ETK*.DLL).
  222.  
  223.   This might seem pedantic, but using the correct terms avoids confusion
  224.   and makes it easier for us to figure out what users are attempting to
  225.   describe.
  226.  
  227. :QUESTION.
  228.   How does EPM (or LaMail) find its .INI file, and how can I move it?
  229.  
  230. :ANSWER.
  231.   EPM first looks in the OS2.INI for an EPM / EPMIniFile entry.  If found,
  232.   this is used as the location of the EPM.INI file.  If no entry is found
  233.   in OS2.INI, EPM will search the EPMPATH for the EPM.INI.  If it's still
  234.   not found, EPM will ask the user where it can be found / should be
  235.   created.
  236.  
  237.   (For LaMail, substitute LAM / LAMIniFile, LAM.INI, and LAMPATH.)
  238.  
  239.   OS/2 2.x contains an entry in the default OS2.INI for EPM / EPMIniFile
  240.   pointing to \OS2, so this is where EPM will place its EPM.INI.  This
  241.   was done so that new users of the OS/2 Enhanced Editor wouldn't be
  242.   confused by the prompt asking where to put the .INI file.
  243.  
  244.   If you use a .INI file editor, such as JPOS2INI (from OS2TOOLS), to
  245.   delete the entry from the OS2.INI (while EPM is not running), then you
  246.   will be able to either move the EPM.INI to where you want it, or
  247.   delete it if you want a new one to be created.
  248.  
  249. :QUESTION.
  250.   How can I get the Ctrl+H feature working?
  251.  
  252. :ANSWER.
  253.   If your system is set up correctly, placing the cursor on a word and
  254.   pressing Ctrl+H, or pressing the Ctrl key while double-clicking MB1 on
  255.   the word should bring up the help.
  256.  
  257.   You must have WANT_KEYWORD_HELP = 1 in your MYCNF.E if you recompiled the
  258.   macros.  If you don't have KEYWORD_HELP_INDEX_FILE set in your MYCNF.E,
  259.   then the default index file is epmkwhlp.ndx, which is searched for in
  260.   the current directory, EPMPATH, DPATH, EPM.EXE's directory, and PATH (in
  261.   that order).  If you have HELPNDX set in your environment, the value of
  262.   this will be used in place of the hard-coded file name.  The value can
  263.   either be a single file name or a list of names separated by plus signs.
  264.   E.g.,
  265.      set HELPNDX=epmkwhlp.ndx+epmtech.ndx+dde4.ndx
  266.  
  267.   epmkwhlp.ndx is the index file for the OS/2 API calls, and comes with
  268.   the OS/2 2.x Developer's Toolkit.  dde4.ndx come with C Set/2.
  269.   epmtech.ndx is part of the EPM package.
  270.  
  271.   Note that while EPM supports multiple files, the Toolkit's Kwikinf
  272.   utility does not; if you use that, and wish to support more than one
  273.   of the available .ndx files, you'll have to merge them into a single
  274.   file.
  275.  
  276. :QUESTION.
  277.   How come my redefinition of up, down, etc. has no effect, but it works
  278.   for other keys?
  279.  
  280. :ANSWER.
  281.   Do a Togglecontrol 26.  By default, the arrows are handled internally,
  282.   for performance reasons - all that runtime logic for checking line or
  283.   stream mode, basic or advanced marking, etc. slowed down the macro code
  284.   too much.
  285.  
  286.   If you're trying to modify Ctrl+Up or Ctrl+Down, the reason is different:
  287.   they're defined to be accelerators for "Push cursor" and "Pop cursor".
  288.   Either turn off stack support (by removing WANT_STACK_CMDS from your
  289.   MYCNF.E) or define your own accelerators, replacing the 1222 and 1223
  290.   (defined in STDMENU.E, FEVSHMNU.E, or OVSHMENU.E).  Most accelerators
  291.   are defined to execute the internally-defined key, but the DOKEY cmd
  292.   does not currently support Ctrl+Up or Ctrl+Down.  This will be fixed
  293.   in a future release.
  294.  
  295. :QUESTION.
  296.   When I try to preview my text under EPM I get a Trap 00D (SYS3175) ???
  297.  
  298. :ANSWER.
  299.   In config.sys you will find a line "RUN=...\EPW.EXE".  REM
  300.   that out and put "DETACH ...\EPW.EXE" in startup.cmd and
  301.   reboot (... is the path to EPW.EXE).  It is a bug in the
  302.   EPW.EXE prog which is installed by CM/2 or DB/2.
  303.  
  304. :QUESTION.
  305.   The help says to go to Options, Preferences, <something>, but my
  306.   Options menu doesn't have a Preferences.  What's going on?
  307.  
  308. :ANSWER.  (For EPM 5.51)
  309.   If you don't have configuration constants set so that at least one of the
  310.   items on the Preferences menu besides Settings would be present, then we
  311.   don't bother with a pullright, and just place Settings on the Options
  312.   menu.  Take a look at OS2TOOLS,CFG to see how the shipped .ex files were
  313.   configured, or EPMGCNF.SMP to see how the OS/2 2.x Enhanced Editor was
  314.   configured.  The relevant menu items and configuration settings are:
  315.     Advanced marking      WANT_CUA_MARKING = 'SWITCH'
  316.     Stream editing        WANT_STREAM_MODE = 'SWITCH'
  317.     Ring enabled          RING_OPTIONAL = 1
  318.     Stack commands        WANT_STACK_CMDS = 'SWITCH'
  319.     CUA accelerators      BLOCK_ACTIONBAR_ACCELERATORS = 'SWITCH'
  320.  
  321.   For additional details on any of these configuration constants, see the
  322.   online users guide.  For example:  view epmusers WANT_CUA_MARKING
  323.  
  324. :ANSWER.  (For EPM 6)
  325.   The macros were compiled to use a new menu style, which contains no
  326.   Options menu.  You can find the selections from the Options / Preferences
  327.   pull-right on the Misc page of the Settings dialog, and the selections
  328.   from the Options / Frame Controls pull-right on the Window page of the
  329.   Settings dialog.  If you recompile without STD_MENU_NAME in your MYCNF.E
  330.   you'll get back the original menu structure.
  331.  
  332. :QUESTION.
  333.   Whenever I am in draw mode, and I try to draw right to left,
  334.   I get the following message, 'Call: unknown proc "ISDBCS"'.  Why?
  335.  
  336. :ANSWER.
  337.   You recompiled the base macros (EPM.EX) without WANT_DBCS = 1 in your
  338.   MYCNF.E, but didn't create a new DRAW.EX, so it still thinks there's
  339.   DBCS support in the base .ex file.  If you recompile DRAW, everything
  340.   should be fine.
  341.  
  342. :QUESTION.
  343.   How can I get LEXAM.DLL and an appropriate dictionary?
  344.  
  345. :ANSWER.
  346.   To get a copy of LEXAM.DLL and US.DCT, you can take it from the OS/2 TCP/IP
  347.   product or the Developer's Connection CD-ROM.  For other dictionaries, you
  348.   can download them in binary from a VM host if you have VM PROOF
  349.   installed there (e.g., as part of PROFS or Office Vision).  Download the
  350.   appropriate * LEXIS file to *.DCT.  The LEXAM.DLL must be in a directory
  351.   in your LIBPATH, and the dictionary must be pointed to by the Dictionary
  352.   entry in the Paths page of the EPM Settings dialog.
  353.  
  354. :QUESTION.
  355.   EPM won't let me SAVE AS a file to the host.  Why is this?
  356.  
  357. :ANSWER.
  358.   The Save As uses the standard OS/2 2.x file dialog, which knows nothing
  359.   about host files.  Using Name and then Save gives the same result.
  360.  
  361. :QUESTION.
  362.   EPM returns to my .CMD file before I'm done editing.  <or>
  363.   My EPM program reference doesn't stay cross-hatched.  <or>
  364.   Why can't I have different working directories in different
  365.   edit windows?
  366.  
  367. :ANSWER.
  368.   By default, when you start a new instance of EPM, it checks to see if
  369.   there's already a running instance.  If there is, it passes off the
  370.   command-line parameters to the running instance and immediately
  371.   terminates.  This saves on system resources, by only having one process,
  372.   but it confuses the WPS, which only knows that it started a program and
  373.   the program it started, ended.  If you start EPM with the /M option
  374.   (for Multiple processes), it won't do this - each /M invocation will
  375.   start a new process, which will be more costly in terms of system
  376.   resources, but which will keep the cross-hatching in synch, and will
  377.   also ensure that control won't return until the edit session ends
  378.   (often important when starting EPM from a .CMD file, or from NR/2).
  379.   Finally, you must do this if you want different edit windows to have
  380.   different working directories, as a single process can only have one
  381.   working directory.
  382.  
  383. :QUESTION.
  384.   When I open an EPM WPS edit object, I get one set of settings, when I
  385.   start EPM from the OS/2 command line, I get a different set.  What's
  386.   the story?
  387.  
  388. :ANSWER.
  389.   The configuration for an EPM WPS edit object is saved by the WPS, and
  390.   is unique for that edit object.  (You can copy the settings to another
  391.   edit object by exporting them to a file from the first object's pop-up
  392.   menu, and importing them into the second.)
  393.  
  394.   When EPM is started from the command line, or from a program reference,
  395.   it uses the EPM.INI to load and save its settings from.  (See a previous
  396.   answer for details on how EPM finds the EPM.INI.)
  397.  
  398. :QUESTION.
  399.   You said to add something to a MY*.E file, but I can't find
  400.   such a file in the distributed macros (EMACROS.FLS or EPMMAC.ZIP).
  401.  
  402. :ANSWER.
  403.   We never ship a MY*.E file; that way there's no chance of overlaying
  404.   one of your files.  If you don't already have a MY*.E, create one.
  405.   (MYSTUFF.E, MYCNF.E, MYKEYS.E, MYKEYSET.E, or  MYMAIN.E)
  406.   (If this is the first time you're compiling, you should create a
  407.   MYCNF.E starting with OS2TOOLS.CFG as a base.  OS2TOOLS.CFG was used as
  408.   the MYCNF.E used to build the *.EX files used for EPM 6, and internally
  409.   for 5.51.  EPMGCNF.SMP was used as the MYCNF.E file used to build the
  410.   *.ex files shipped with the OS/2 Enhanced Editor.)
  411.  
  412. :QUESTION.
  413.   On OS/2 Warp, there are holes where my EPM ring buttons should be?
  414.  
  415. :ANSWER.
  416.   Use the EPM that comes with Warp.  Both because you'll see the ring
  417.   icons and because it's been tuned for Warp, and should load faster.
  418.   (Actually, you should be using the latest EPM 6 instead of the old
  419.   version 5.51, but that's not the topic of this answer...)
  420.  
  421.   Technical explanation:  In a previous release of OS/2 there was a bug
  422.   in which owner-draw buttons were passed an invalid pointer when a
  423.   system message hook was installed.  This made EPM trap when people ran
  424.   apps that used a message hook.  As a work-around, we checked the
  425.   selector of the pointer passed to us and ignored it if it wasn't the
  426.   same as something else.  Warp is using the 32-bit GRE and so the
  427.   selectors are now different.  Since the OS/2 bug was fixed, the "fix"
  428.   for the non-appearing buttons was to only do the selector check for
  429.   older versions of OS/2.
  430.  
  431. ------------------------------------------------------------------
  432. List of files included in E_MACROS:
  433.  
  434. ALL.E        - The ALL macro; displays all instances of a given string.
  435. ASSIST.E     - The bracket-matching code used by Ctrl+left bracket.
  436. BOOKMARK.E   - Bookmark support, Workframe support, & code to load and
  437.                save EPM attributes as an enhanced attribute.
  438. BOX.E        - The BOX macro; draw a box in various styles.
  439. BUFF.E       - Test macros for the buffer() opcode; not actually used.
  440. CALLREXX.E   - The Rexx macro interface code.
  441. CHAROPS.E    - Support for character mark operations.
  442. CKEYS.E      - C language syntax assist.
  443. CKEYSEL.E    - (Not used by EPM.)
  444. CLIPBRD.E    - Support for the clipboard and for copying marks between windows.
  445. COLORS.E     - Constant definitions for color names.
  446. DOSUTIL.E    - OS-specific code (DATE, TIME, DIR, etc.).
  447. DRAW.E       - The DRAW macro; lets you draw figures with the cursor keys.
  448. DRAWKEY.E    - F6 definition.
  449. E.E          - The main file that includes most of the others.
  450. E3EMUL.E     - Advanced host file editing support
  451. EKEYS.E      - E macro language syntax assist.
  452. EKEYSEL.E    - (Not used by EPM.)
  453. ENGLISH.E    - Messages; included separately for NLS support.
  454. EPM.E        - Front-end for E.E.
  455. EPMDBCS.E    - DBCS support
  456. EPMGCNF.SMP  - The MYCNF.E used to build the Enhanced Editor.
  457. EPMLEX.E     - Spell-checking support.
  458. EPMSHELL.E   - EPM Shell support.
  459. EPM_EA.E     - Enhanced attribute support.
  460. EXTRA.E      - Used to split EPM.EX in two.
  461. GET.E        - The GET macro; get a copy of a file into the current file.
  462. HELP.E       - Builds the stand-alone HELP.EX used by the help browser.
  463. KWHELP.E     - Keyword help support (Ctrl+H or Ctrl+double-click MB1).
  464. LINKCMDS.E   - Linking-related commands.
  465. LOAD.E       - The default DEFLOAD (executed every time a file is loaded).
  466. MAIN.E       - The default DEFMAIN (processes the command line arguments).
  467. MAKETAGS.E   - Used to create a TAGS file (EPM 6.x only).
  468. MARKFILT.E   - Procedures for filtering a block,line or character mark.
  469. MATH.E       - MATHx, ADD, and MULT commands.
  470. MATHLIB.E    - Support for MATH.E; separately linkable.
  471. MENUHELP.H   - Help panel numbers; used by STDMENU.E
  472. MODIFY.E     - The default DEFMODIFY (called when .modify status changes and
  473.                for autosaving.
  474. MOUSE.E      - Mouse support.
  475. MYCNF.SMP    - A simple sample MYCNF.E.
  476. MYSTUFF.SMP  - A sample MYSTUFF.E.
  477. OS2TOOLS.CFG - The MYCNF.E used to build the .ex files distributed within IBM.
  478. PKEYS.E      - P language syntax assist.
  479. PKEYSEL.E    - (Not used by EPM.)
  480. PUT.E        - The PUT macro; copy the marked area or current file into a
  481.                new file, or append it to the end of an existing file.
  482. READ.ME      - (This file.)
  483. REXXKEYS.E   - Rexx language syntax assist.
  484. RKEYSEL.E    - (Not used by EPM.)
  485. SAVELOAD.E   - The default host file editing support.
  486. SELECT.E     - The default DEFSELECT (called whenever the current file changes).
  487. SLNOHOST.E   - Save / Load file support with no host support.
  488. SMALL.E      - Used to compile a smaller .ex file; untested with the current EPM.
  489. SORTDLL.E    - The SORT command that uses sorting code in a DLL; limited to
  490.                sorting 64k (65,535 bytes) of data.
  491. SORTE.E      - A SORT command that just uses macro code.  Slower, but no size
  492.                limit.
  493. SORTEPM.E    - The SORT command used by EPM 6, which has a built-in sort.
  494.                Faster than either of the previous sorts, with no size limits.
  495. STDCMDS.E    - Most of the macro-defined commands are defined here.
  496. STDCNF.E     - Standard configuration file; sets defaults for options not
  497.                set in MYCNF.E.
  498. STDCONST.E   - Sets various constants.
  499. STDCTRL.E    - Code for interacting with various PM and EPM controls.
  500. STDKEYS.E    - Most of the keys are defined here.
  501. STDMENU.E    - The standard EPM action bar is defined here.
  502. STDPROCS.E   - Most of the standard macro procedures are defined here.
  503. TAGS.E       - Adds TAGS support (EPM 6.x only).
  504. USERAPP.SMP  - A sample user application, written for sharing with other users.
  505.                It shows how to include the MYCNF.E to determine the user's
  506.                defaults.
  507.  
  508. Note:  EPM 6.0x adds long lines support, extended GREP, tags support, user
  509. configurable toolbar, pop-up menus, keyword highlighting, faster sort,
  510. faster spell-check, multiple views, context menus, and lots more.  From
  511. EPM, you can select Help / General Help / EPM Features to see further
  512. details.
  513.