changeset 1923:1d4f67de06f4

[project @ 1996-02-11 20:20:30 by jwe]
author jwe
date Sun, 11 Feb 1996 20:23:27 +0000
parents 8a57554f3142
children 48f0013988b1
files src/Makefile.in src/mk-oct-links.in src/variables.cc
diffstat 3 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 \
--- 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
--- 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");