Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/lambda b/doc/efun/lambda
index 14a709f..913115a 100644
--- a/doc/efun/lambda
+++ b/doc/efun/lambda
@@ -1,17 +1,19 @@
SYNOPSIS
closure lambda(mixed *arr, mixed)
-BESCHREIBUNG
- Erzeugt eine Lambda Closure, entsprechend den Lamda Closures in LISP.
- Die Closure ist an das Objekt gebunden, das sie erzeugt hat, und kann
- deshalb Verweise auf globale Variablen enthalten.
+DESCRIPTION
+ Constructs a lambda closure, like lambda function in LISP.
+ The closure is bound to the creating object, and thus can contain
+ references to global variables.
- Das erste Argument ist ein Array, das die Argumente (Symbole)
- beschreibt, die der Closure bei ihrer Auswertung durch funcall()
- oder apply() uebergeben werden.
+ The first argument is an array describing the arguments
+ (symbols) passed to the closure upon evaluation by funcall()
+ or apply().
-GESCHICHTE
- Eingefuehrt in 3.2@70.
+HISTORY
+ Introduced in 3.2@70.
-SIEHE AUCH
- closures(LPC), unbound_lambda(E), apply(E), funcall(E), bind_lambda(E)
+SEE ALSO
+ closures(LPC), unbound_lambda(E), apply(E), funcall(E),
+ bind_lambda(E)
+