descriptive.mac: declare local variable to avoid possibility of name collision.
[maxima.git] / src / rmaxima.in
blob3cb716025cb414d2696a3f118fa77a277c39fd83
1 #!@POSIX_SHELL@
2 # -*- Shell-script -*-
4 RLWRAP=rlwrap
5 type $RLWRAP > /dev/null 2>&1
6 if [ "$?" -ne "0" ]; then
7     echo "$0 error: rmaxima requires rlwrap." >& 1
8     echo "rlwrap is available from <https://github.com/hanslub42/rlwrap>." >& 1
9     exit 1
13 if [ "@default_layout_autotools@" = "true" ]; then
14   MAXIMA_SHAREDIR="@expanded_datadir@/@PACKAGE@/@VERSION@/share"
15 else
16   MAXIMA_SHAREDIR="@expanded_top_srcdir@/share"
19 MAXIMA_BUILTINS=$MAXIMA_SHAREDIR/builtins-list.txt
21 if [ -f "$MAXIMA_BUILTINS" ]; then
22   exec rlwrap --always-readline --complete-filenames --break-chars '(){}[].,*/+-=&^$#@\;|´`:' --file "$MAXIMA_BUILTINS" --remember maxima --disable-readline "$@"
23 else
24   echo "$0: failed to locate list of built-in symbols; go ahead without it."
25   echo "$0: (I thought it might be $MAXIMA_BUILTINS but there is no such file.)"
26   exec rlwrap --always-readline --complete-filenames --break-chars '(){}[].,*/+-=&^$#@\;|´`:' --remember maxima --disable-readline "$@"