NEWS tweaks for nil
authorAndy Wingo <wingo@pobox.com>
Fri, 16 Apr 2010 08:35:51 +0000 (10:35 +0200)
committerAndy Wingo <wingo@pobox.com>
Fri, 16 Apr 2010 08:36:04 +0000 (10:36 +0200)
* NEWS: Some nil-related news fixes; after 1.9.10, I know, but hey ;-)

NEWS

diff --git a/NEWS b/NEWS
index efa8e1a..d610d83 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -71,9 +71,7 @@ but when we start to integrate more with Emacs, it is possible that we
 break code that assumes that, for example, `(not x)' implies that `x' is
 `eq?' to `#f'. This is not a common assumption. Refactoring affected
 code to rely on properties instead of identities will improve code
-correctness.
-
-That is to say, user code should test falsity with `if', not with `eq?'.
+correctness. See "Nil" in the manual, for more details.
 
 ** Integration of lalr-scm, a parser generator
 
@@ -1195,8 +1193,7 @@ Just use `scm_call_0', etc instead.
 The bit representation of `nil' has been tweaked so that it is now very
 efficient to check e.g. if a value is equal to Scheme's end-of-list or
 Lisp's nil. Additionally there are a heap of new, specific predicates
-like scm_is_null_or_nil. Probably in the future we will #define
-scm_is_null to scm_is_null_or_nil.
+like scm_is_null_or_nil.
 
 ** Support for static allocation of strings, symbols, and subrs.