home *** CD-ROM | disk | FTP | other *** search
-
- status = cli$present(&qual31);
- if(status == CLI$_PRESENT | status==CLI$_DEFAULTED) cropmarks = 1;
-
- status = cli$present(&qual32);
- if(status == CLI$_PRESENT)
- {status = cli$get_value(&qual32,&dumdum,&length);
- #ifdef SHORTINT
- if (sscanf(&dummy[0], "%ld", &maxsecsize)==0)
- #else /* ~SHORTINT */
- if (sscanf(&dummy[0], "%d", &maxsecsize)==0)
- #endif /* ~SHORTINT */
- error("! Bad section size arg (/SEC_SIZE).") ;
- }
-
- status = cli$present(&qual33);
- if(status == CLI$_PRESENT)
- { (void)fprintf(stderr, banner) ;
- help() ;
- }
-
- status = cli$present(&qual34);
- if(status == CLI$_NEGATED) dontmakefont = 1;
- /*-----------------------------------------------------------------------
- * Currently one uses /PSIZE="5mm,10mm" This way CASE is preserved
- * Should I convert the PSIZE to allow a LIST => /PSIZE=(5mm,10mm) and
- * convert the case back to lowercase in here.
- *-----------------------------------------------------------------------*/
- status = cli$present(&qual35);
- if(status == CLI$_PRESENT) {
- status = cli$get_value(&qual35,&dumdum,&length);
- dummy[length] = '\0';
- handlepapersize(&dummy[0], &hpapersize, &vpapersize) ;
- if (landscape) {
- error("both landscape and papersize specified; ignoring landscape") ;
- landscape = 0 ;
- }
- }
-
- status = cli$present(&qual36);
- if(status == CLI$_PRESENT) {
- status = cli$get_value(&qual36,&dumdum,&length);
- dummy[length] = '\0';
- handlepapersize(&dummy[0], &hoff, &voff) ;
- }
-
- }
-
- /* end of file */
-