aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-09 02:33:42 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-09 02:33:42 -0700
commit9bcc7df96f2e40e54fb1cebdb6df5de4139b0ed9 (patch)
tree20445bda332b490515445acee5a7c79a45ed1db8 /expand.h
parent4bd63020ca897b4b65d74469a0036451a2e23fa4 (diff)
Lots of modernization changed
Removed wcsdupcat
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/expand.h b/expand.h
index 414768c7..14a09230 100644
--- a/expand.h
+++ b/expand.h
@@ -105,8 +105,7 @@ enum
EXPAND_WILDCARD_NO_MATCH,
/* Ok, a wildcard in the string matched a file */
EXPAND_WILDCARD_MATCH
-}
- ;
+};
/** Character for separating two array elements. We use 30, i.e. the ascii record separator since that seems logical. */
#define ARRAY_SEP 0x1e
@@ -129,8 +128,7 @@ class parser_t;
into the list out.
If the parameter does not need expansion, it is copied into the list
- out. If expansion is performed, the original parameter is freed and
- newly allocated strings are inserted into the list out.
+ out.
\param input The parameter to expand
\param output The list to which the result will be appended.