Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/m_reallocate b/doc/efun/m_reallocate
index 550e12b..c129e3f 100644
--- a/doc/efun/m_reallocate
+++ b/doc/efun/m_reallocate
@@ -1,23 +1,22 @@
SYNOPSIS
mapping m_reallocate(mapping m, int width)
-BESCHREIBUNG
- Erzeugt ein neues Mapping mit <width> Werten pro Key und fuellt das
- Mapping mit den Werten aus <m>. Wenn <m> weniger als <width> Werte
- pro Key hat, werden im neuen Mapping die restlichen Werte auf 0
- gesetzt. Wenn <m> mehr als <width> Werte pro Key hat, werden die
- ueberzaehligen Werte ignoriert.
+DESCRIPTION
+ Create a new mapping with <width> values per key and fill it
+ with the values from mapping <m>. If <m> has less than <width>
+ values per key, the extra values in the result are set to 0.
+ If <m> has more values per key, the extra values are ignored.
- Das urspruengliche Mapping <m> wird nicht veraendert.
+ The mapping <m> is not changed.
-BEISPIELE
+EXAMPLES
mapping m = ([ "foo":1;2;3, "bar":4;5;6 ])
- m_reallocate(m, 1) --> liefert ([ "foo":1, "bar:4 ])
- m_reallocate(m, 4) --> liefert ([ "foo":1;2;3;0, "bar:4;5;6;0 ])
+ m_reallocate(m, 1) --> returns ([ "foo":1, "bar:4 ])
+ m_reallocate(m, 4) --> returns ([ "foo":1;2;3;0, "bar:4;5;6;0 ])
-GESCHICHTE
- Eingefuehrt in LDMud 3.2.6, auf Vorschlag von Tubmud.
+HISTORY
+ Introduced in LDMud 3.2.6, suggested by Tubmud.
-SIEHE AUCH
+SEE ALSO
m_allocate(E), m_values(E), widthof(E)