home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / FFB.ZIP / FFHLP.ARC / EDITSTUF.HLP < prev    next >
Encoding:
Text File  |  1987-12-21  |  1.8 KB  |  53 lines

  1. \ EDITSTUF.HLP  Stuff needed by the editor              by Tom Zimmer
  2.  
  3. tsegb           text segment beginning
  4. lseg            linelist save segment
  5. dseg            delete lines segment
  6. toff            Text offset to end of front section of edit text.
  7. tend            Text offset to front of back section of edit text.
  8.  
  9. seginit         ( --- )
  10.         Initialize the editor segment pointers to reset, that is
  11.         no editing has been done, and the pointers can not be
  12.         valid, so clear them out.
  13.  
  14. mxlln           Maximum length editor will allow entry of text.
  15. maxlines        Maximum number of lines editor will allow.
  16. maxdline        Maximum number of lines we save on delete line.
  17.  
  18. memabort        ( f1 --- )
  19.         Abort if f1 is true, with message that there was not enough
  20.         memory to start up the editor.
  21.  
  22. tbuf.init       ( --- )
  23.         Initialize the edit segment pointers when the editor is
  24.         started the first time.
  25.  
  26. ovinit          ( --- )
  27.         Pseudonym for tbuf.init, they were different at one time, now
  28.         ovinit just calls tbuf.init.
  29.  
  30. 'sed            Defered word used when starting editor.
  31. 'ed             Defered word used when re-starting editor on an
  32.                 existing file.
  33. 'listing        Defered word used when creating printed listings.
  34.  
  35. sed             ( --- )
  36.         Start the editor, and prompt for a file.
  37.  
  38. ed              ( --- )
  39.         Start the editor on the file that is already open.
  40.  
  41. edit            ( n1 --- )
  42.         Start the editor, on the current file, on the line specified
  43.         by n1.
  44.  
  45. listing         ( --- )
  46.         Create a printed listing of the currently open file.
  47.  
  48. fix             ( | name --- )
  49.         Locate "name" and open the file that contains the source for
  50.         it, then enter the editor on the line where name is defined.
  51.  
  52.  
  53.