home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / fpc35503.bug < prev    next >
Text File  |  1991-02-25  |  2KB  |  47 lines

  1. FPC35xxx.BUG   Bug reports and fixes for F-PC version 3.5xxx
  2.  
  3.   This file contains bug reports and possible fixes for F-PC.
  4. A number of bugs listed in the previous bug file FPC350.BUG were fixed in
  5. this version, and are not included in thislist.
  6.  
  7.    **********************************************************************
  8.    **********************************************************************
  9.  
  10.    this one is a NASTY!
  11.    Symptoms: if you use open without a filename, it calls gfl. This is
  12.    very nice except that if you press ESC to not select
  13.    a file, something very strange happens.
  14.    Several things that are (supposedly) saved upon entering xexpect such as:
  15.  
  16.                 ['] xup     save!> doup
  17.                 ['] xdown   save!> dodown
  18.                 ['] defmenu save!> equit
  19.                 ['] >norm   save!> >edattrib
  20.                             save>  keysfuncptr
  21.  
  22.    ARE NOT BEING RESTORED!
  23.  
  24.    do this:
  25.       hidden see equit ( or doup or any one above)
  26.       FORTH SAYS: equit is <equit> .....
  27.  
  28.    now do a control O to open a file, without a filename. you'll enter gfl
  29.  
  30.    Press escape, to abort (and not select a file)
  31.       FORTH SAYS: no filename selected
  32.  
  33.    now look at equit, it will be DEFMENU, which it was set to in XEXPECT
  34.    but somehow NEVER restored.
  35.  
  36.    The major problem this causes for me is that >edattrib gets set to
  37.    >norm (from >attrib3) so certain operations CHANGE there colors. It
  38.    confuses the user.
  39.  
  40.    I can "FIX" it by resetting >edattrib in certain places but I am
  41.    curious as to what is happening! Haven't we already finished
  42.    xexpect (in query) BEFORE running GFL ?
  43.  
  44. ***************************************************************************
  45. ***************************************************************************
  46.  
  47.