[3421] in Athena Bugs
Re: psdraft and palladium
daemon@ATHENA.MIT.EDU (epeisach@ATHENA.MIT.EDU)
Fri Oct 13 15:27:36 1989
From: epeisach@ATHENA.MIT.EDU
Date: Fri, 13 Oct 89 15:27:06 -0400
To: ilham@ATHENA.MIT.EDU
Cc: bugs@ATHENA.MIT.EDU
I found the problem with the filter used by Palladium that was causing
the failure. The following context diff of Setup.sh solves the problem
(it is currenlty installed on hobbes, but not in source tree)
What was happening was that SKIPPAGES was never set and then in the
setup,
/pdskip $SKIPPAGES def
caused a stack underflow with my file sent to palladium. By setting the
SKIPPAGES to 0, a proper value is inserted in the script.
Ezra
*** Setup.sh.old Thu Jun 29 22:59:24 1989
--- Setup.sh Fri Oct 13 15:13:12 1989
***************
*** 7,13 ****
#echo $0 $# `date` >> FDEBUG
#echo $0 $* `date` >> FDEBUG
! SKIPPAGES=
while test $# -gt 0
do case $1 in
--- 7,13 ----
#echo $0 $# `date` >> FDEBUG
#echo $0 $* `date` >> FDEBUG
! SKIPPAGES=0
while test $# -gt 0
do case $1 in