[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Boeing ATC mods to EW.



Well, to get the ball rolling, I suppose I'll list out some of the
changes we made to EW to get it to run in Lucid 3.0.2 on a Sun 3 (OS
4.0.X).  There's a long list of stuff we did.  I'll submit them as
groups in separate messages.  The first one will be in this message.

First of all we had to deal with a font name error when doing the
(clear-all).  tk@research.att.com gave us the solution which is appended
here.  Basically, the solution is correct the misspelling of the
'dec-adobe-...' fonts to '-adobe-...'.

------- Forwarded Message -------
Date: Wed, 18 Apr 90 07:13 PDT
To: snicoud@atc.boeing.com
From: tk@research.att.com
Sender: tk@allegra.tempo.nj.att.com
In-Reply-To: Stephen L. Nicoud's message of Tue, 17 Apr 90 11:04 PDT <19900417180449.6.SLN@SKAGIT.atc.boeing.com>
Subject: Re: Name Error?

the name-error is because a font EW is asking for doesn't exist.
the following changes to code/fonts.lisp eliminate the error.


*** fonts.lisp	Wed Apr  4 18:42:38 1990
--- fonts.lisp~	Mon Apr  2 17:03:17 1990
***************
*** 200,211 ****
  
      (:SYMBOL
        (:roman
! 	(:small      -adobe-symbol-medium-r-normal--10-100-75-75-p-61-adobe-fontspecific)
! 	(:normal     -adobe-symbol-medium-r-normal--12-120-75-75-p-74-adobe-fontspecific)
! 	(:large      -adobe-symbol-medium-r-normal--14-140-75-75-p-85-adobe-fontspecific)
! 	(:very-large -adobe-symbol-medium-r-normal--18-180-75-75-p-107-adobe-fontspecific)
! 	(:huge       -adobe-symbol-medium-r-normal--24-240-75-75-p-142-adobe-fontspecific)
! 	(:very-small -adobe-symbol-medium-r-normal--8-80-75-75-p-51-adobe-fontspecific)))))
  
  
--- 200,211 ----
  
      (:SYMBOL
        (:roman
! 	(:small      dec-adobe-symbol-medium-r-normal--10-100-75-75-p-61-adobe-fontspecific)
! 	(:normal     dec-adobe-symbol-medium-r-normal--12-120-75-75-p-74-adobe-fontspecific)
! 	(:large      dec-adobe-symbol-medium-r-normal--14-140-75-75-p-85-adobe-fontspecific)
! 	(:very-large dec-adobe-symbol-medium-r-normal--18-180-75-75-p-107-adobe-fontspecific)
! 	(:huge       dec-adobe-symbol-medium-r-normal--24-240-75-75-p-142-adobe-fontspecific)
! 	(:very-small dec-adobe-symbol-medium-r-normal--8-80-75-75-p-51-adobe-fontspecific)))))
  
  
------- End of Forwarded Message -------