home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / prog1 / 4th_86.lzh / EDHELP < prev    next >
Text File  |  1988-07-08  |  1KB  |  30 lines

  1. ( 8 July 88 -- MFB )
  2.  
  3.     The USING command has to be executed first in order
  4.              to define the file being currently used:
  5.                 USING MYFILE.TXT  <cr>   EDIT <cr>
  6.  
  7.     The commands RELOAD and REDIT also use the name embedded
  8.       by USING -- so that succesive edit/load/test/re-edit/re-load
  9.                 cycles will be as painless as possible.
  10.  
  11.     REDIT is the same as EDIT - except that it automatically 
  12.                 executes RELOAD when the editor is exited.
  13.  
  14.     RELOAD is the same as FLOAD xxxx where xxxx is the name
  15.                   previously embedded by USING
  16.  
  17.     Provided the first use of FLOAD is preceded by a keyboard
  18.            entered dummy definition    
  19.         : starthere ; ( TASK is alrady used elsewhere)
  20.  
  21.     Then FORGET can be automatically implemented during REDIT
  22.       and RELOAD by starting the source file with:
  23.  
  24.     forget starthere
  25.     : starthere ;      ## WARNING ## 
  26.                            be careful however that the word "starthere"
  27.        is not one of your already debugged dictionary entries - otherwise
  28.        they will be deleted. Use DDICT to check if you are in doubt.
  29.  
  30.