emode-files-1.red 866 B

123456789101112131415161718192021
  1. % Loads "first half" of files necessary to build EMODE.
  2. % Assumes that the "default directory" contains all the necessary files.
  3. imports '(strings); % Strings library needed at runtime.
  4. in "temporary-emode-fixes.red"$
  5. in "customize-rlisp-for-emode.sl"$ % Must be first?
  6. in "envsel.sl"$ % Support for "environments"
  7. in "dispch.sl"$ % "keyboard" dispatch support
  8. in "emode1.red"$ % Bunches of stuff
  9. in "misc-emode.sl"$ % miscellaneous utilities and commands
  10. in "sleep.sl"$ % Utility to "sleep" until time limit or character typed.
  11. in "ring-buffer.sl"$ % General "ring buffer" utilities
  12. in "buffers.sl"$ % Misc stuff for manipulating EMODE buffers.
  13. in "buffer-position.sl"$ % Utilities for handling "point" within buffer.
  14. in "query-replace.sl"$ % Implements query-replace command.
  15. in "window.sl"$
  16. in "windows.sl"$
  17. in "buffer.sl"$