home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / forth / 3998 < prev    next >
Encoding:
Text File  |  1993-01-26  |  2.0 KB  |  47 lines

  1. Newsgroups: comp.lang.forth
  2. Path: sparky!uunet!spool.mu.edu!sol.ctr.columbia.edu!venezia!penev
  3. From: penev@venezia (Penio Penev)
  4. Subject: Re: Documenting
  5. References: <1993Jan25.201404.15539@crd.ge.com>
  6. Sender: nobody@ctr.columbia.edu
  7. Organization: Rockefeller University
  8. Date: Tue, 26 Jan 1993 06:02:31 GMT
  9. X-Newsreader: TIN [version 1.1 PL6]
  10. Message-ID: <1993Jan26.060231.12883@sol.ctr.columbia.edu>
  11. Reply-To: penev@venezia.rockefeller.edu
  12. X-Posted-From: venezia.rockefeller.edu
  13. NNTP-Posting-Host: sol.ctr.columbia.edu
  14. Lines: 31
  15.  
  16. Chuck Eaker (eaker@ukulele.crd.ge.com) wrote:
  17. : However, the insert commands in typical Forth block editors
  18. : usually cause a number of characters (equal to the number of
  19. : inserted characters) at the end of the line or the end of the
  20. : block to be discarded. This is not true of file based editors.
  21. : I don't especially care for this block editor behavior.
  22. : It's an implementation quirk that requires attention, and, in
  23. : the old days, often distracted me from the real work I was trying
  24.  
  25. I avoid data loss by pressing the key for UNFLUSH, which copied the
  26. current screen to a safe location (screen 0) and re-reads the block
  27. from disk. I have rarely been unhappy about this.
  28.  
  29. : to do. Running out of room on a block almost always required
  30. : shuffling the contents of blocks around to free up the next
  31. : sequential block to avoid fragmentation that would undoubtedly
  32. : proved to be another distraction later. This was time spent
  33. : not doing real work.
  34.  
  35. Coping a range of blocks to a new location is pressing the key for
  36. MoveBlocks and specifying three numbers. Less that 10 seconds work. On
  37. a hard disk no other time counts. I've been wacthing myself using this
  38. function. I do not use it every week. So the time spent in doing it is
  39. negligible. If I counted this time, I'd also count the time for
  40. logging into the machine and whatching the Window manager pop up all
  41. windows.
  42.  
  43. Again, I do not say, that everybody must use blocks (or FORTH even). I
  44. say that works fine for me. _Much_ finer, than text files (or C).
  45.  
  46. -- Penio.
  47.