[Nice-commit] Nice/debian changelog,1.133,1.134
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-02-26 16:15:42
|
Update of /cvsroot/nice/Nice/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv32146/debian
Modified Files:
changelog
Log Message:
Made the order more logical, when reading from top to bottom.
Index: changelog
===================================================================
RCS file: /cvsroot/nice/Nice/debian/changelog,v
retrieving revision 1.133
retrieving revision 1.134
diff -C2 -d -r1.133 -r1.134
*** changelog 25 Feb 2003 20:36:52 -0000 1.133
--- changelog 26 Feb 2003 16:15:37 -0000 1.134
***************
*** 1,5 ****
nice (0.7.7) unstable; urgency=low
! * The '@' in '@null' patterns is deprecated, '@' should be omitted.
* Method can also dispatch on integer and character literals, but there is
always a default case required. An example:
--- 1,9 ----
nice (0.7.7) unstable; urgency=low
! * Methods taking a boolean parameter can now dispatch on the cases
! 'true' and 'false':
! boolean not(boolean);
! not(true) = false;
! not(false) = true;
* Method can also dispatch on integer and character literals, but there is
always a default case required. An example:
***************
*** 12,20 ****
fib(2) = 1;
fib(n) = fib(n-2) + fib(n-1);
! * Methods taking a boolean parameter can now dispatch on the cases
! 'true' and 'false':
! boolean not(boolean);
! not(true) = false;
! not(false) = true;
* The 'fun' keyword is deprecated now, you can leave it away.
* New policy for typing calls to Java methods. By default, the typing
--- 16,20 ----
fib(2) = 1;
fib(n) = fib(n-2) + fib(n-1);
! * The '@' in '@null' patterns is deprecated, '@' should be omitted.
* The 'fun' keyword is deprecated now, you can leave it away.
* New policy for typing calls to Java methods. By default, the typing
|