Update von efun-Manpages aus Driversourcen.
Aktualisiert manpages, welche wenig oder nicht vom
MG modifizier wurden.
Change-Id: If70b4fc27cfd38cb9e98cb48328a48731969a76f
diff --git a/doc/efun/bind_lambda b/doc/efun/bind_lambda
index 6075a33..ddd2ada 100644
--- a/doc/efun/bind_lambda
+++ b/doc/efun/bind_lambda
@@ -1,16 +1,18 @@
SYNOPSIS
- closure bind_lambda(closure, object ob)
+ closure bind_lambda(closure cl, object ob)
-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.
+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.
- If the optional argument ob is not this_object(), the privilege
- violation ("bind_lambda", this_object(), ob) occurs.
+ Wenn das optionale Argument <ob> nicht mit this_object()
+ uebereinstimmt, wird eine Schutzverletzung ("bind_lambda",
+ this_object(), ob) verursacht.
-HISTORY
- Introduced in 3.2@82.
+GESCHICHTE
+ Eingefuehrt in 3.2.1@82.
-SEE ALSO
+SIEHE AUCH
lambda(E), unbound_lambda(E), apply(E), funcall(E), closures(LPC)