aboutsummaryrefslogtreecommitdiffhomepage
path: root/isar/interface
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2005-02-15 18:43:22 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2005-02-15 18:43:22 +0000
commit3ebd8547bc8c938bd50fd4876c1f72d46dccb83c (patch)
tree7be86c1ee3b8e12ecfa01cdb02471806a455783d /isar/interface
parentbfe9931a3bdb711015eadc3696822d7e76c01186 (diff)
Changes from Clemens Ballarin for large X-Symbol fonts
Diffstat (limited to 'isar/interface')
-rw-r--r--isar/interface11
1 files changed, 8 insertions, 3 deletions
diff --git a/isar/interface b/isar/interface
index 9f2d33a6..a562f41e 100644
--- a/isar/interface
+++ b/isar/interface
@@ -30,6 +30,7 @@ usage()
echo " -P BOOL actually start Proof General (default true), otherwise"
echo " run plain tty session"
echo " -X BOOL configure the X-Symbol package on startup (default true)"
+ echo " -f SIZE set X-Symbol font size (default 14)"
echo " -g GEOMETRY specify Emacs geometry"
echo " -k NAME use specific isar-keywords for named logic"
echo " -l NAME logic image name (default \$ISABELLE_LOGIC=$ISABELLE_LOGIC)"
@@ -68,11 +69,12 @@ INITFILE="true"
WINDOWSYSTEM="true"
XSYMBOL=""
XSYMBOLSETUP=true
+XSYMBOL_FONTSIZE="12"
getoptions()
{
OPTIND=1
- while getopts "I:P:X:g:k:l:m:p:u:w:x:" OPT
+ while getopts "I:P:X:f:g:k:l:m:p:u:w:x:" OPT
do
case "$OPT" in
I)
@@ -84,6 +86,9 @@ getoptions()
X)
XSYMBOLSETUP="$OPTARG"
;;
+ f)
+ XSYMBOL_FONTSIZE="$OPTARG"
+ ;;
g)
GEOMETRY="$OPTARG"
;;
@@ -229,8 +234,8 @@ else
PROOFGENERAL_XSYMBOL="$XSYMBOL"
export PROOFGENERAL_HOME PROOFGENERAL_ASSISTANTS PROOFGENERAL_LOGIC PROOFGENERAL_XSYMBOL
- export ISABELLE_OPTIONS
+ export ISABELLE_OPTIONS XSYMBOL_FONTSIZE
eval exec "$PROGNAME" "$ARGS" "$FILES"
-fi
+fi \ No newline at end of file