# HG changeset patch # User jwe # Date 859417515 0 # Node ID b11fb5e85dc52d84eda7849e8b0e7d0bc0d0253f # Parent 71a47e9360c0cec9ce789c96fb82e91f04f6b190 [project @ 1997-03-26 23:04:05 by jwe] diff --git a/COPYING b/COPYING --- a/COPYING +++ b/COPYING @@ -2,7 +2,7 @@ Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 675 Mass Ave, Cambridge, MA 02139, USA + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -279,7 +279,7 @@ END OF TERMS AND CONDITIONS - Appendix: How to Apply These Terms to Your New Programs + How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it @@ -305,7 +305,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Also add information on how to contact you by electronic and paper mail. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 26 17:04:11 1997 John W. Eaton + + * COPYING: Update to latest version that includes correct address + for the FSF. + Tue Mar 25 21:46:49 1997 John W. Eaton * aclocal.m4 (OCTAVE_CXXLIBS): Delete macro definition. diff --git a/NEWS b/NEWS --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ -Summary of changes for version 2.0.6: ------------------------------------- +Summary of changes for version 2.1: +---------------------------------- + + * It is now possible to declare static variables that retain their + values across function calls. For example, + + function ncall = f () static n = 0; ncall = ++n; endfunction + + defines a function that returns the number of times that it has + been called. * Functions like quad, fsolve, and lsode can take either a function name or a simple function body as a string. For example,