I found the following line after the command line options are processed:
# set the default increment for sheets unless( $pgskip ) { $pgskip = 100; }
This sets $pgskip to 100 if it is zero. Which means that this particular version will not let you do anything but skips.
$pgskip gets set to 100 when $pgskip is zero or it is undefined.
That line should be ---
$pgskip = 100 unless defined $pgskip;
(* jcl *)
--- http://www.luciani.org
_______________________________________________ geda-user mailing list geda-user@xxxxxxxxxxxxxx http://www.seul.org/cgi-bin/mailman/listinfo/geda-user