Update doc/efun/ aus Driversourcen.
Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.
Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/unquote b/doc/efun/unquote
index 9e8fad0..38628c4 100644
--- a/doc/efun/unquote
+++ b/doc/efun/unquote
@@ -1,17 +1,17 @@
SYNOPSIS
- quoted_array unquote(quoted_array arr)
- string|symbol unquote(symbol sym)
+ quoted_array unquote(quoted_array)
+ string|symbol unquote(symbol)
-BESCHREIBUNG
- Entfernt ein Quote von einem gequoteten Array oder Symbol. Wenn das
- letzte Quote von einem Symbol entfernt wird, entsteht ein String.
+DESCRIPTION
+ Removes a quote from quoted arrays and symbols. When the
+ last quote from a symbol is removed, the result is a string.
-BEISPIELE
- unquote('foo); ergibt: "foo"
- unquote( '({1,2,3}) ); ergibt: ({1,2,3})
+EXAMPLES
+ unquote('foo) -> "foo"
+ unquote( '({1,2,3}) ) -> ({1,2,3})
-GESCHICHTE
- Eingefuehrt in LDMud 3.2.9.
+HISTORY
+ Introduced in LDMud 3.2.9 .
-SIEHE AUCH
+SEE ALSO
quote(E), symbolp(E)