Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/bind_lambda b/doc/efun/bind_lambda
index 96e70af..cc06783 100644
--- a/doc/efun/bind_lambda
+++ b/doc/efun/bind_lambda
@@ -1,18 +1,16 @@
 SYNOPSIS
-        closure bind_lambda(closure cl, object|lwobject ob)
+        closure bind_lambda(closure, object|lwobject ob)
 
-BESCHREIBUNG
-        Bindet eine ungebundene Lambda-Closure (die von unbound_lambda()
-        erzeugt wurde) an ein Objekt <ob> und gibt die Closure zurueck. Die
-        Funktion kann auch dazu genutzt werden, eine Efun-, Simul-Efun- oder
-        Operator-Closure an ein anderes Objekt zu binden.
+DESCRIPTION
+        Binds an unbound lambda closure to an object and return it.
+        The efun can also be used to rebind an efun-, simul-efun
+        or operator closure to a different object.
 
-        Wenn das optionale Argument <ob> nicht mit this_object()
-        uebereinstimmt, wird eine Schutzverletzung ("bind_lambda",
-        this_object(), ob) verursacht.
+        If the optional argument ob is not this_object(), the privilege
+        violation ("bind_lambda", this_object(), ob) occurs.
 
-GESCHICHTE
-        Eingefuehrt in 3.2.1@82.
+HISTORY
+        Introduced in 3.2@82.
 
-SIEHE AUCH
+SEE ALSO
         lambda(E), unbound_lambda(E), apply(E), funcall(E), closures(LPC)