diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-11 20:40:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-11 20:40:24 (GMT) |
commit | d5d473fd5c18174c084a758f8c44bf446d1570a9 (patch) | |
tree | 5bfe730e2949006c6636e449e851b343eb6dcb87 | |
parent | 8981fdf16ee1440579e155fdd11e49b64d44d743 (diff) | |
download | cpython-d5d473fd5c18174c084a758f8c44bf446d1570a9.zip cpython-d5d473fd5c18174c084a758f8c44bf446d1570a9.tar.gz cpython-d5d473fd5c18174c084a758f8c44bf446d1570a9.tar.bz2 |
Add --letter option, similar to --a4. This is a no-op, but can be used from
a Makefile: mkhowto.sh --$(PAPER).
-rwxr-xr-x | Doc/tools/mkhowto.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 4b0f632..6108330 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -43,6 +43,7 @@ HTML options: Other options: --a4 Format for A4 paper. + --letter Format for US letter paper (the default). --help, -H Show this text. --logging, -l Log stdout and stderr to a file (*.how). --debugging, -D Echo commands as they are executed. @@ -166,6 +167,9 @@ while [ "$1" ] ; do TEXINPUTS=$TOPDIR/paper-a4:$TEXINPUTS shift 1 ;; + --letter|--lette|--lett|--let|--le) + shift 1 + ;; --link|--lin|--li) LINK="$2" shift 2 |