# HG changeset patch # User jwe # Date 859587728 0 # Node ID ff4ee9ad942a6a456b296abe474f5618b12592a3 # Parent 2284b26520286fbfc5eb19d9400f704a7aed2878 [project @ 1997-03-28 22:21:25 by jwe] diff -r 2284b2652028 -r ff4ee9ad942a NEWS --- a/NEWS Fri Mar 28 22:04:34 1997 +0000 +++ b/NEWS Fri Mar 28 22:22:08 1997 +0000 @@ -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 diff -r 2284b2652028 -r ff4ee9ad942a scripts/ChangeLog --- a/scripts/ChangeLog Fri Mar 28 22:04:34 1997 +0000 +++ b/scripts/ChangeLog Fri Mar 28 22:22:08 1997 +0000 @@ -1,3 +1,8 @@ +Fri Mar 28 16:19:53 1997 John W. Eaton + + * 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 * miscellaneous/bug_report.m: Use __OCTAVE_HOME__ to find diff -r 2284b2652028 -r ff4ee9ad942a scripts/miscellaneous/dump_prefs.m --- a/scripts/miscellaneous/dump_prefs.m Fri Mar 28 22:04:34 1997 +0000 +++ b/scripts/miscellaneous/dump_prefs.m Fri Mar 28 22:22:08 1997 +0000 @@ -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 diff -r 2284b2652028 -r ff4ee9ad942a src/Makefile.in --- a/src/Makefile.in Fri Mar 28 22:04:34 1997 +0000 +++ b/src/Makefile.in Fri Mar 28 22:22:08 1997 +0000 @@ -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)