Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/to_object b/doc/efun/to_object
index 1ca88da..1eba674 100644
--- a/doc/efun/to_object
+++ b/doc/efun/to_object
@@ -5,25 +5,23 @@
 
         (object)<value>
 
-BESCHREIBUNG
-        Das Argument <arg> wird in ein Objekt umgewandelt, wenn dies
-        moeglich ist.
+DESCRIPTION
+        The argument is converted into an object, if possible.
 
-        Fuer Strings wird das Objekt mit entsprechendem object_name(<arg>)
-        zurueck gelierfert, oder 0, wenn es kein entsprechendes Objekt gibt.
-        Dies entspricht find_object().
+        For strings, the object with a matching object_name() is
+        returned, or 0 if there is none, as find_object() does.
 
-        Fuer (gebundene!) Closures wird das Objekt zurueck gegeben, das die
-        Closure enthaelt. Fuer "Alien Lfun Closures" ist das das Objekt, das
-        die Closure erzeugt hat, nicht das Objekt, in dem die Lfun definiert
-        ist.
+        For (bound!) closures, the object holding the closure is
+        returned (for 'alien lfun closures' this is the object which
+        created the closure, not the object the lfun is defined in).
 
-        Objekte und die Zahl 0 werden unveraendert zurueck gegeben.
+        Objects and the number 0 return themselves.
 
-FEHLER
-        Die Cast-Schreibweise funktioniert nur, wenn der genaue Wert von
-        <value> zum Zeitpunkt der Kompilierung bekannt ist. Dies wird nicht
-        geaendert werden, da die Funktionsform verwendet werden kann.
+BUGS
+        The cast notation only works if the precise type of <value>
+        is known at compile-time. This will not be fixed - use the
+        function form instead.
 
-SIEHE AUCH
-        find_object(E), to_array(E), to_int(E), to_string(E), get_type_info(E)
+SEE ALSO
+        find_object(E), to_array(E), to_int(E), to_string(E),
+        get_type_info(E)