home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / postscri / 6446 < prev    next >
Encoding:
Text File  |  1993-01-25  |  1.2 KB  |  48 lines

  1. Newsgroups: comp.lang.postscript
  2. Path: sparky!uunet!gatech!purdue!mentor.cc.purdue.edu!news
  3. From: ab@nova.cc.purdue.edu (Allen B)
  4. Subject: Re: {(%%[|0|]%%)=print flush}
  5. Message-ID: <C1F2AJ.MAr@mentor.cc.purdue.edu>
  6. Sender: news@mentor.cc.purdue.edu (USENET News)
  7. Organization: Purdue University
  8. References: <1k0c7bINN9gj@nz12.rz.uni-karlsruhe.de>
  9. Date: Mon, 25 Jan 1993 15:42:18 GMT
  10. Lines: 36
  11.  
  12. In article <1k0c7bINN9gj@nz12.rz.uni-karlsruhe.de>  
  13. malle@rpksun1.mach.uni-karlsruhe.de (Bernhard Malle) writes:
  14. > Hello,
  15. > Is there any PostScript Guru that knows the meaning of the following
  16. > statement:
  17. > {(%%[|0|]%%)=print flush}
  18.  
  19. Sure.  =print prints that string, and then flush makes
  20. sure you see it.
  21.  
  22. =print is defined here on my NeXT to be:
  23.  
  24. {
  25.     dup type /stringtype ne {
  26.         =string cvs
  27.     } if
  28.     print
  29. }
  30.  
  31. Like =string, =print isn't documented.  In this case, you
  32. could use print just as well.
  33.  
  34. > The interesting thing about the above mentioned statement is, that ghostview  
  35. can
  36. > display the diagrams correctly, but sends an error message with just 
  37. > %%[|0|]%%
  38.  
  39. Yep.
  40.  
  41. > Does anyone knows how to avoid this command?
  42.  
  43. Just take it out.  If you aren't watching the output
  44. channel, you won't see it anyway.
  45.  
  46. ab
  47.