find.c: Fix flag passed to ListStart() in DRCFind().
[geda-pcb/pcjc2.git] / doc / gs / print-eps.scm
blob453861063762f98bfe6c029fd151cce428093c52
1 ;; This file may be used to print gschem schematics from the
2 ;; command line.  Typical usage is:
3 ;;
4 ;;   gschem -p -o mysch.ps -s /path/to/this/file/print.scm mysch.sch
5 ;;
6 ;; The schematic in "mysch.sch" will be printed to the file "mysch.ps"
8 ; light background
9 ;(load "/envy/dj/geda/share/gEDA/gschem-lightbg")
11 (output-orientation "portrait")
12 (output-type "extents no margins")
13 (output-color "enabled")
14 (output-text "ps")
16 (paper-size 0.0 0.0)
18 ; You need call this after you call any rc file function
19 (gschem-use-rc-values)
21 ; filename is specified on the command line
22 (gschem-postscript "dummyfilename.eps")
24 (gschem-exit)