diff NEWS @ 2958:da62d3b91fa3

[project @ 1997-05-09 18:51:56 by jwe]
author jwe
date Fri, 09 May 1997 18:52:05 +0000
parents e9c24f32f175
children d6ba658ac4ae
line wrap: on
line diff
--- a/NEWS	Fri May 09 18:43:21 1997 +0000
+++ b/NEWS	Fri May 09 18:52:05 1997 +0000
@@ -1,13 +1,21 @@
 Summary of changes since version 2.0.5:
 --------------------------------------
 
+  * New built-in variable `print_rhs_assign_val' controls what is
+    printed when an assignment expression is evaluated.  If it is
+    zero, the value of the variable on the left hand side (after the
+    assignment) is printed.  Nonzero, the value of the right hand side
+    (i.e., the result of the expression) is printed.  The default
+    value of is zero, so the behavior is the same as in previous
+    versions of Octave.
+
   * tmpnam now takes two optional arguments, DIR, and PREFIX.  For
     example, tmpnam ("/foo", "bar-") returns a file name like
     "/foo/bar-10773baa".  If DIR is omitted or empty, the value of the
     environment variable TMPDIR, or /tmp is used.  If PREFIX is 
     omitted, "oct-" is used.
 
-  * The built-in variable PWD has been removed.  If you need to get
+  * The built-in variable `PWD' has been removed.  If you need to get
     the value of the current working directory, use the pwd() function
     instead.