changeset 2853:ff4ee9ad942a

[project @ 1997-03-28 22:21:25 by jwe]
author jwe
date Fri, 28 Mar 1997 22:22:08 +0000
parents 2284b2652028
children f9088eb6b47a
files NEWS scripts/ChangeLog scripts/miscellaneous/dump_prefs.m src/Makefile.in
diffstat 4 files changed, 11 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS
+++ b/NEWS
@@ -3,7 +3,8 @@
 
   * Commas in global statements are no longer special.  They are now
     treated as command separators.  This removes a conflict in the
-    grammar and is consistent with the way Matlab behaves.
+    grammar and is consistent with the way Matlab behaves.  The
+    variable `warn_comma_in_global_decl' has been eliminated.
 
   * It is now possible to declare static variables that retain their
     values across function calls.  For example,
@@ -33,8 +34,9 @@
     use zero-one style indexing must now use logical values.  You can
     use the new function logical() to convert a numeric value to a
     logical value.  This avoids the need for the built-in variable
-    prefer_zero_one_indexing, so it has been removed.  Logical values
-    are automatically converted to numeric values where appropriate.
+    `prefer_zero_one_indexing', so it has been removed.  Logical
+    values are automatically converted to numeric values where
+    appropriate.
 
   * If the argument to lsode that names the user-supplied function is
     a 2-element string array, the second element is taken as the name
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,8 @@
+Fri Mar 28 16:19:53 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* miscellaneous/dump_prefs.m: Delete call to dump_1_pref for
+	warn_comma_in_global_decl.
+
 Tue Mar 25 22:00:49 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find
--- a/scripts/miscellaneous/dump_prefs.m
+++ b/scripts/miscellaneous/dump_prefs.m
@@ -68,7 +68,6 @@
   dump_1_pref (file, "split_long_rows");
   dump_1_pref (file, "treat_neg_dim_as_zero");
   dump_1_pref (file, "warn_assign_as_truth_value");
-  dump_1_pref (file, "warn_comma_in_global_decl");
   dump_1_pref (file, "warn_divide_by_zero");
 
 endfunction
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -369,7 +369,7 @@
 # Special rules -- these files need special things to be defined.
 
 parse.cc : parse.y
-	@echo "expect 13 shift/reduce conflicts"
+	@echo "expect 12 shift/reduce conflicts"
 	$(YACC) $(YFLAGS) $<
 	@$(top_srcdir)/move-if-change y.tab.c $(@F)