Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/command_stack b/doc/efun/command_stack
index 37e2f0b..3efd0cb 100644
--- a/doc/efun/command_stack
+++ b/doc/efun/command_stack
@@ -1,34 +1,31 @@
-GESCHUETZT
 SYNOPSIS
         #include <commands.h>
 
-        mixed * command_stack()
+        mixed * command_stack(void)
 
-BESCHREIBUNG
-        Liefert ein Array, das den Kommandostack beschreibt. Das Array
-        umfasst command_stack_depth() Eintraege; der erste davon beschreibt
-        das Top-Level-Kommando, der letzte Eintrag das aktuelle Kommando.
+DESCRIPTION
+        Return an array describing the current command stack. The array has
+        command_stack_depth() entries, the first describing the top-level
+        command, and the last describing the current one.
 
-        Jeder Eintrag ist wiederum ein Array mit folgenden Eintraegen:
+        Each entry is an array itself with these entries:
 
-            string [CMD_VERB]:      das Verb dieses Kommandos
-            string [CMD_TEXT]:      der volle Text des Kommandos
-            object [CMD_ORIGIN]:    der urspruengliche Kommandogeber
-            object [CMD_PLAYER]:    der momentane Kommandogeber
-            mixed  [CMD_FAIL]:      der Inhalt von notify_fail() (oder 0)
-            mixed  [CMD_FAILOBJ]:   das Objekt, welches notify_fail() gesetzt
-                                    hat
+          string [CMD_VERB]:    the verb of this command
+          string [CMD_TEXT]:    the full command text
+          object [CMD_ORIGIN]:  the original command giver
+          object [CMD_PLAYER]:  the current command giver
+          mixed  [CMD_FAIL]:    the notify_fail setting (or 0).
+          mixed  [CMD_FAILOBJ]: the object which set the notify_fail setting.
 
-        CMD_ORIGIN und CMD_PLAYER sind fuer gewoehnlich das gleiche Objekt.
-        Es gibt nur einen Unterschied, wenn der modify_command-Hook den
-        Kommandogeber mit set_this_player() aendert.
+        CMD_ORIGIN and CMD_PLAYER are usually the same; there is a difference
+        only if the modify_command hook changes the command giver with
+        set_this_player().
 
-ANMERKUNGEN
-        Jeder der Eintraege im Array kann 0 sein.
+        Note that any of the entries may be returned as 0.
 
-GESCHICHTE
-        Eingefuehrt in LDMud 3.2.7.
-        LDMud 3.2.8 fuegte den CMD_FAILOBJ Eintrag hinzu.
+HISTORY
+        Introduced in LDMud 3.2.7.
+        LDMud 3.2.8 added the CMD_FAILOBJ result.
 
-SIEHE AUCH
+SEE ALSO
         command(E), command_stack_depth(E), notify_fail(E)