Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/find_call_out b/doc/efun/find_call_out
index 6716a04..a89ee29 100644
--- a/doc/efun/find_call_out
+++ b/doc/efun/find_call_out
@@ -1,28 +1,14 @@
 SYNOPSIS
-        int find_call_out(string fun)
-        int find_call_out(closur cl)
+        int find_call_out(string func)
+        int find_call_out(closure func)
 
-BESCHREIBUNG
-        Findet den ersten call_out() auf die Funktion fun im aktuellen Objekt
-        (bzw. auf die Closure cl) der ausgefuehrt werden soll. Zurueck gegeben
-        wird die verbleibende Zeit bis zum Aufruf. Wenn kein call_out()
-        anhaengig ist, wird -1 zurueck gegeben.
+DESCRIPTION
+        Find the first call-out due to be executed for function <func>
+        in the current object resp. for the closure <func>, and return the
+        time left. If no call-out is found return -1.
 
-FEHLER
-        Die Suche nach call_out()s auf Closures funktioniert nur, wenn der
-        genaue Wert der Closure gesucht wird.
+HISTORY
+        Finding a call_out to a closure was introduced in 3.2.1@45.
 
-        Das funktioniert:
-            closure cl = symbol_function("main", obj);
-            call_out(cl, 2);
-            find_call_out(cl);
-
-        Das funktioniert nicht:
-            call_out(symbol_function("main", obj), 2);
-            find_call_out(symbol_function("main", obj));
-
-GESCHICHTE
-        Die Suche nach call_out()s auf Closures wurde in 3.2.1@45 eingefuehrt.
-
-SIEHE AUCH
+SEE ALSO
         call_out(E), remove_call_out(E), call_out_info(E)