diff --git a/doc/manual/builtins.xml b/doc/manual/builtins.xml
index 3eee36f2a..c7ebcc9a3 100644
--- a/doc/manual/builtins.xml
+++ b/doc/manual/builtins.xml
@@ -324,6 +324,16 @@ x: x + 456
+ builtins.intersectAttrs
+ e1e2
+
+ Return an attribute set consisting of the
+ attributes in the set e2 that also
+ exist in the set e1.
+
+
+
+
builtins.isAttrse
diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml
index bf79840d8..81543d313 100644
--- a/doc/manual/release-notes.xml
+++ b/doc/manual/release-notes.xml
@@ -8,7 +8,7 @@
-Release 0.13 (September NN,
+Release 0.13 (November 4,
2009)This is primarily a bug fix release. It has some new
@@ -85,7 +85,25 @@ features:
add a string to stack traces — useful for debugging),
builtins.isBool,
builtins.isString,
- builtins.isInt.
+ builtins.isInt,
+ builtins.intersectAttrs.
+
+
+
+ OpenSolaris support (Sander van der Burg).
+
+
+
+ Stack traces are no longer displayed unless the
+ option is used.
+
+
+
+ The scoping rules for inherit
+ (e) ... in recursive
+ attribute sets have changed. The expression
+ e can now refer to the attributes
+ defined in the containing set.