1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# examples from spec
fonts.list = monospace, sans-serif, serif
fonts.sep = monospace;sans-serif;serif;
files.list = " foo.txt, weird\,name,z "
files.sep = foo.txt;weird,name;z;
things.list = \,,,76
things.sep = ,;;76;
empties.list = ,,,
empties.sep = ;;;
escapees.list = \\,\a,\,
escapees.sep = \;\a;,;
nls.list = "a,
b,
c"
nls.sep = a;b;c;
empty.list =
empty.sep =
a.list = a
a.sep = a;
ab.list = " a , b "
ab.sep = a;b;
1empty.list = ,
1empty.sep = ;
2empty.list = ,,
2empty.sep = ;;
comma.list = a\,b, c
comma.sep = a,b;c;
backslash.list = a\\\,b, c\\d
backslash.sep = a\,b;c\d;
|