author | wenzelm |
Wed, 04 Dec 1996 13:05:47 +0100 | |
changeset 2307 | 508d2a233dbc |
parent 2300 | 9af0cf87ac48 |
child 2315 | 491e8d4b8fad |
permissions | -rwxr-xr-x |
#!/bin/bash # # $Id$ # # Isabelle within an xterm. # # TODO: # - font menu (cf. isa-xterm from 8bit package) ## diagnostics function fail() { echo "$1" exit 2 } ## main if [ -z "$ISABELLE_SYMBOLS" -o "$ISABELLE_SYMBOLS" = false ]; then exec xterm $ISABELLE_INTERFACE_OPTIONS -e isabelle "$@" else isatool installfonts exec xterm $ISABELLE_INTERFACE_OPTIONS -fn isacr14 -e isabelle -e 'print_mode:=["symbols"];' "$@" fi