diff options
-rwxr-xr-x | configure | 20 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/ChangeLog | 6 | ||||
-rw-r--r-- | src/interp/i-toplev.boot | 1 | ||||
-rw-r--r-- | src/interp/sys-os.boot | 2 |
5 files changed, 17 insertions, 14 deletions
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for OpenAxiom 1.5.0-2012-08-20. +# Generated by GNU Autoconf 2.68 for OpenAxiom 1.5.0-2012-08-26. # # Report bugs to <open-axiom-bugs@lists.sf.net>. # @@ -570,8 +570,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='OpenAxiom' PACKAGE_TARNAME='openaxiom' -PACKAGE_VERSION='1.5.0-2012-08-20' -PACKAGE_STRING='OpenAxiom 1.5.0-2012-08-20' +PACKAGE_VERSION='1.5.0-2012-08-26' +PACKAGE_STRING='OpenAxiom 1.5.0-2012-08-26' PACKAGE_BUGREPORT='open-axiom-bugs@lists.sf.net' PACKAGE_URL='' @@ -1368,7 +1368,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures OpenAxiom 1.5.0-2012-08-20 to adapt to many kinds of systems. +\`configure' configures OpenAxiom 1.5.0-2012-08-26 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1443,7 +1443,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of OpenAxiom 1.5.0-2012-08-20:";; + short | recursive ) echo "Configuration of OpenAxiom 1.5.0-2012-08-26:";; esac cat <<\_ACEOF @@ -1556,7 +1556,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -OpenAxiom configure 1.5.0-2012-08-20 +OpenAxiom configure 1.5.0-2012-08-26 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2549,7 +2549,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by OpenAxiom $as_me 1.5.0-2012-08-20, which was +It was created by OpenAxiom $as_me 1.5.0-2012-08-26, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3482,7 +3482,7 @@ fi # Define the identity of the package. PACKAGE='openaxiom' - VERSION='1.5.0-2012-08-20' + VERSION='1.5.0-2012-08-26' cat >>confdefs.h <<_ACEOF @@ -20302,7 +20302,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by OpenAxiom $as_me 1.5.0-2012-08-20, which was +This file was extended by OpenAxiom $as_me 1.5.0-2012-08-26, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20368,7 +20368,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -OpenAxiom config.status 1.5.0-2012-08-20 +OpenAxiom config.status 1.5.0-2012-08-26 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 35625a45..d1f0c92a 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ dnl Makefiles for building OpenAxiom interpreter, compiler, libraries, and dnl auxiliary tools where appropriate. dnl -AC_INIT([OpenAxiom], [1.5.0-2012-08-20], +AC_INIT([OpenAxiom], [1.5.0-2012-08-26], [open-axiom-bugs@lists.sf.net]) dnl Most of the macros used in this configure.ac are defined in files diff --git a/src/ChangeLog b/src/ChangeLog index c51f0c32..7c9636c6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,11 @@ 2012-08-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * interp/sys-os.boot (flushStdout): Remove as unused. + * interp/i-toplev.boot (recordAndPrint): Do not print a newline + before formatting the result. + +2012-08-26 Gabriel Dos Reis <gdr@cs.tamu.edu> + * interp/debug.lisp: Remove reference to TOK and CHR. * interp/spad-parser.boot: Likewise. * interp/g-error.boot: Likewise. diff --git a/src/interp/i-toplev.boot b/src/interp/i-toplev.boot index 15a63bad..a1982eb9 100644 --- a/src/interp/i-toplev.boot +++ b/src/interp/i-toplev.boot @@ -194,7 +194,6 @@ recordAndPrint(x,md) == $outputMode: local := md --used by DEMO BOOT mode:= (md=$EmptyMode => quadSch(); md) if (md ~= $Void) or $printVoidIfTrue then - newlineIfDisplaying() if not $QuietCommand then output(x',md') putHist('%,'value,objNewWrap(x,md),$e) diff --git a/src/interp/sys-os.boot b/src/interp/sys-os.boot index 2095c14e..4a5ed497 100644 --- a/src/interp/sys-os.boot +++ b/src/interp/sys-os.boot @@ -175,8 +175,6 @@ import sock__send__wakeup: (int,int) -> int for sockSendWakeup import server__switch: () -> int for serverSwitch -import flush__stdout: () -> int for flushStdout - import sock__send__signal: (int,int) -> int for sockSendSignal --% |