# HG changeset patch # User jwe # Date 824070207 0 # Node ID 1d4f67de06f4ca092df2cb00059489faea4f4fc2 # Parent 8a57554f31424ed30c1c31014c1d3431d403f69b [project @ 1996-02-11 20:20:30 by jwe] diff --git a/src/Makefile.in b/src/Makefile.in --- a/src/Makefile.in +++ b/src/Makefile.in @@ -162,8 +162,8 @@ LIBS = @LIBS@ -DISTFILES = Makefile.in mkdefs mkbuiltins octave.gperf octave.cc \ - parse.cc lex.cc y.tab.h \ +DISTFILES = Makefile.in mkdefs mkbuiltins mk-oct-links \ + octave.gperf octave.cc parse.cc lex.cc y.tab.h \ $(INCLUDES) $(DLD_SRC) $(SOURCES) $(TEMPLATE_SRC) $(TI_SRC) all: defaults.h stamp-picdir libraries \ diff --git a/src/mk-oct-links.in b/src/mk-oct-links.in --- a/src/mk-oct-links.in +++ b/src/mk-oct-links.in @@ -20,6 +20,7 @@ if [ "$n" = "$base" ]; then true else + echo "creating link $n.oct -> $base.oct" ( cd $links_dir; ln $base.oct $n.oct ) fi done diff --git a/src/variables.cc b/src/variables.cc --- a/src/variables.cc +++ b/src/variables.cc @@ -1810,6 +1810,10 @@ "if a function does not return any values explicitly, return the\n\ last computed value"); + DEFVAR ("save_precision", SBV_save_precision, 15.0, 0, + set_save_precision, + "number of significant figures kept by the ASCII save command"); + DEFVAR ("saving_history", SBV_saving_history, 1.0, 0, saving_history, "save command history");