M NEWS +3 -0
@@ 1,3 1,6 @@
+wisp 1.0.7
+- fix: a lisp-style comment in the bash-cript had broken the wisp REPL
+
wisp 1.0.6
- allow (and ignore!) a single space indentation for the first line of a chunk to support meta-commands
- ensure that (language wisp) is compiled in the wisp REPL
M configure.ac +1 -1
@@ 1,7 1,7 @@
dnl run `autoreconf -i` to generate a configure script.
dnl Then run ./configure to generate a Makefile.
dnl Finally run make to generate the project.
-AC_INIT([wisp], [1.0.6],
+AC_INIT([wisp], [1.0.7],
[arne_bab@web.de])
# Add macros in m4/ to ensure that wisp builds without having Guile in the aclocal path
AC_CONFIG_MACRO_DIR([m4])
M wisp.in +1 -1
@@ 4,6 4,6 @@
if [ -z ${GUILE+x} ]; then
GUILE=guile
fi
-;; ensure that wisp is compiled
+# ensure that wisp is compiled
"${GUILE}" -c '(import (language wisp))' >/dev/null 2>&1
exec -a "$0" "${GUILE}" -x .w --language=wisp "$@"