File: head.ps

package info (click to toggle)
picolisp 3.1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,100 kB
  • sloc: ansic: 14,205; lisp: 795; makefile: 290; sh: 13
file content (28 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%%DocumentFonts: (atend)
/PicoEncoding
   ISOLatin1Encoding  dup length array  copy
def
/isoLatin1 {
   dup dup findfont  dup length  dict begin
      {1 index /FID ne {def} {pop pop} ifelse} forall
      /Encoding PicoEncoding def  currentdict
   end  definefont
} def
/glyphArrayShow {
   {
      dup type /stringtype eq {show} {glyphshow} ifelse
   } forall
} def
/glyphArrayWidth {
   0 exch
   {
      dup type /stringtype eq {
         stringwidth pop
      } {
         matrix currentmatrix gsave
         newpath nulldevice setmatrix 0 0 moveto glyphshow
         currentpoint grestore pop
      } ifelse
      add
   } forall
} def