# HG changeset patch # User jwe # Date 855447083 0 # Node ID aa519c3a052308b5dc82dcae445f806ba1755cbc # Parent 02f298ddf9f6d60396eaa416f5a8e0ed916fa385 [project @ 1997-02-09 00:11:22 by jwe] diff -r 02f298ddf9f6 -r aa519c3a0523 ChangeLog --- a/ChangeLog Sat Feb 08 23:47:34 1997 +0000 +++ b/ChangeLog Sun Feb 09 00:11:23 1997 +0000 @@ -1,7 +1,7 @@ Tue Feb 4 14:10:35 1997 John W. Eaton * octMakefile.in (binary-dist): Use find and xargs instead of - requiring chomd to support X. + requiring chmod to support X. Mon Feb 3 23:51:08 1997 John W. Eaton diff -r 02f298ddf9f6 -r aa519c3a0523 NEWS --- a/NEWS Sat Feb 08 23:47:34 1997 +0000 +++ b/NEWS Sun Feb 09 00:11:23 1997 +0000 @@ -1,3 +1,28 @@ +Summary of changes for version 2.0.3: +------------------------------------ + + * The manual has been completely revised and now corresponds much + more closely to the features of the current version. + + * The return value for assignment expressions is now the RHS since + that is more consistent with the way other programming languages + work. However, Octave still prints the entire LHS value so that + + x = zeros (1, 2); + x(2) = 1 + + still prints + + x = + + 0 1 + + but an assignment like + + z = x(2) = 1 + + sets z to 1 (not [ 0, 1 ] as in previous versions of Octave). + Summary of changes for version 2.0.2: ------------------------------------