missing NULL terminator in set_config_x
[geda-gaf.git] / gschem / scripts / print.scm
blob748adbc239344ea21b22b08d5e0ae36907ba5c3f
1 ;; $Id$
2 ;;
3 ;; This file may be used to print gschem schematics from the
4 ;; command line.  Typical usage is:
5 ;;
6 ;;   gschem -p -o mysch.ps -s /path/to/this/file/print.scm mysch.sch
7 ;;
8 ;; The schematic in "mysch.sch" will be printed to the file "mysch.ps"
10 ;; Uncomment these to override defaults when printing from the command line
11 ;(print-orientation "portrait")
12 ;(print-color "enabled")
13 ;(print-paper "na-letter")
15 ; You need call this after you call any rc file function
16 (gschem-use-rc-values)
18 ; filename is specified on the command line
19 (gschem-pdf "dummyfilename")
21 (format (current-error-port)
22 "WARNING: Exporting with 'print.scm' is deprecated.  Also, it now
23 outputs PDF rather than PostScript, which is probably not what you
24 want.
26 Please use `gaf export' instead.  See `man gaf' for details.
30 (gschem-exit)