- Removed redundant head_len field in datatype_info
- Added new alt_names field in datatype_info
- indtac now takes additional list of variables as argument
#!/usr/bin/env bash## $Id$# Author: Markus Wenzel, TU Muenchen## Isabelle interface startup script.if [ -L "$0" ]; then TARGET="$(LC_ALL=C ls -l "$0" | sed 's/.* -> //')" exec "$(cd "$(dirname "$0")"; cd "$(pwd -P)"; cd "$(dirname "$TARGET")"; pwd)/$(basename "$TARGET")" "$@"fi## settingsPRG="$(basename "$0")"ISABELLE_HOME="$(cd "$(dirname "$0")"; cd "$(pwd -P)"; cd ..; pwd)"source "$ISABELLE_HOME/lib/scripts/getsettings" || exit 2## diagnosticsfunction fail(){ echo "$1" >&2 exit 2}## maincase "$ISABELLE_INTERFACE" in none) INTERFACE="$ISABELLE" ;; */*) INTERFACE="$ISABELLE_INTERFACE" ;;esac[ ! -x "$INTERFACE" ] && fail "Bad Isabelle interface: \"$ISABELLE_INTERFACE\""exec "$INTERFACE" "$@"