From 880f421fc30003d1626429e8796d43b91d71cab9 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 16 Feb 1998 17:42:46 +0000 Subject: Update. 1998-02-16 17:33 Ulrich Drepper * elf/rtld.c (dl_main): Recognize --library-path parameter and pass value (or NULL) to _dl_init_paths. * elf/dl-load.c (_dl_init_paths): Change to take one parameter, replacing local variable llp. If llp is NULL examine LD_LIBRARY_PATH environment variable. * elf/link.h: Change prototype for _dl_init_paths. * elf/dl-support.c: Pass NULL in _dl_init_paths call. * localedata/Makefile (distribute): Add test files. 1998-02-17 Andreas Jaeger * localedata/tests/{test1.cm, test2.cm, test3.cm, test4.cm, test1.def, test2.def, test3.def, test4.def}: Simple input files for localedef. Contributed by Yung-Ching Hsiao . * localedata/Makefile (tests): Call tst-locale.sh. * localedata/tst-locale.sh: New file, regression tests for some localedef problems. 1998-02-15 Thorsten Kukuk * nis/nss_nisplus/nisplus-alias.c: Use __stpncpy. * nis/nss_nisplus/nisplus-hosts.c: Make sure buffer is always NUL terminated. * nis/nss_nisplus/nisplus-network.c: Likewise. * nis/nss_nisplus/nisplus-proto.c: Likewise. * nis/nss_nisplus/nisplus-rpc.c: Likewise. * nis/nss_nisplus/nisplus-service.c: Likewise. Add more changes from TI-RPC 2.3 for rpcgen to fix include/C++ bug and support generating thread safe RPC code. * sunrpc/rpc_main.c: Add changes. * sunrpc/rpc_clntout.c: Likewise. * sunrpc/rpc_cout.c: Likewise. * sunrpc/rpc_hout.c: Likewise. * sunrpc/rpc_parse.c: Likewise. * sunrpc/rpc_sample.c: Likewise. * sunrpc/rpc_scan.c: Likewise. * sunrpc/rpc_svcout.c: Likewise. * sunrpc/rpc_util.c: Likewise. * sunrpc/rpc_util.h: Add new structs and prototypes. * sunrpc/proto.h: Remove prototypes for static functions. 1998-02-15 Andreas Schwab * locale/programs/ld-messages.c (messages_finish): Don't skip error checking when being quiet. * locale/programs/ld-ctype.c (ctype_finish): Likewise. (set_class_defaults): Likewise. * locale/programs/charmap.c (parse_charmap): Likewise. * locale/programs/ld-collate.c (collate_finish): Likewise. * locale/programs/ld-monetary.c (monetary_finish): Likewise. * locale/programs/ld-time.c (time_finish): Likewise. * locale/programs/locfile.c (write_locale_data): Likewise. * locale/programs/ld-ctype.c (ctype_class_to): Silently ignore unknown characters and empty ranges. * locale/programs/ld-collate.c (collate_order_elem): When processing an ellipsis properly form a linked list in the result table, fix typo when allocating ordering array. [PR libc/419] 1998-02-13 Andreas Schwab * elf/Makefile (ld-map): Define. (rtld-ldscript): Define. Change all `$(objpfx)rtld-ldscript' to `$(rtld-ldscript)'. ($(objpfx)ld.so): Combine the two versions of this rule. Depend on $(ld-map). (rtld-link): Combine the two versions of this definition. Fixed to make it work when no symbol versioning is used. 1998-02-16 Ulrich Drepper * Makeconfig (build-program-cmd): Use --library-path parameter to ld.so instead of environment variable. * sunrpc/Makefile (rpcgen-cmd): Don't use -$ parameter. * sunrpc/rpc_main.c: Remove support for -$$ option again. 1998-02-16 Andreas Jaeger * Make-dist: Respect with-cvs setting. * MakeTAGS (all-pot): Likewise. * sysdeps/sparc/sparc32/Makefile: Likewise. * sysdeps/mach/hurd/Makefile: Likewise. * stdlib/Makefile: Likewise. * posix/Makefile: Likewise. * intl/Makefile: Likewise. * po/Makefile (linguas): Likewise --- localedata/Makefile | 7 +- localedata/locales/tr_TR | 1049 +++++++++++++++++++++++++++++++++++++++++--- localedata/tests/test1.cm | 73 +++ localedata/tests/test1.def | 9 + localedata/tests/test2.cm | 73 +++ localedata/tests/test2.def | 9 + localedata/tests/test3.cm | 73 +++ localedata/tests/test3.def | 9 + localedata/tests/test4.cm | 12 + localedata/tests/test4.def | 7 + localedata/tst-locale.sh | 51 +++ 11 files changed, 1306 insertions(+), 66 deletions(-) create mode 100644 localedata/tests/test1.cm create mode 100644 localedata/tests/test1.def create mode 100644 localedata/tests/test2.cm create mode 100644 localedata/tests/test2.def create mode 100644 localedata/tests/test3.cm create mode 100644 localedata/tests/test3.def create mode 100644 localedata/tests/test4.cm create mode 100644 localedata/tests/test4.def create mode 100755 localedata/tst-locale.sh (limited to 'localedata') diff --git a/localedata/Makefile b/localedata/Makefile index ff3e9f07a0..2d45558eb1 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -37,9 +37,13 @@ test-output := $(foreach s, .out .xout, \ generated := $(test-input) $(test-output) generated-dirs := $(basename $(test-input)) en_US +test-names := test1 test2 test3 test4 +test-srcs := $(addprefix tests/,$(addsuffix .cm,$(test-names)) \ + $(addsuffix .def,$(test-names))) + distribute := CHECKSUMS tst-fmon.sh tst-fmon.data ChangeLog sort-test.sh \ README mnemonic.ds fr_CA,2.13.in de_DE.in da_DK.in \ - $(charmaps) $(locales) + $(charmaps) $(locales) $(test-srcs) # Get $(inst_i18ndir) defined. include ../Makeconfig @@ -58,4 +62,5 @@ ifeq (no,$(cross-compiling)) tests: $(objpfx)collate-test $(objpfx)xfrm-test $(objpfx)tst-fmon $(SHELL) -e sort-test.sh $(common-objpfx) $(test-input) $(SHELL) -e tst-fmon.sh $(common-objpfx) tst-fmon.data + $(SHELL) -e tst-locale.sh $(common-objpfx) endif diff --git a/localedata/locales/tr_TR b/localedata/locales/tr_TR index db94a83a1b..8de6ea6d4a 100644 --- a/localedata/locales/tr_TR +++ b/localedata/locales/tr_TR @@ -20,6 +20,11 @@ escape_char / % Distribution and use is free, also % for commercial purposes. +% Corrections by: +% 1998-01-11T15:54:39 +% Onur Tolga Sehitoglu , +% Dept. of Comp. Eng. METU/Ankara Turkey + LC_COLLATE % Base collation scheme: 1994-03-22 @@ -34,7 +39,7 @@ LC_COLLATE % members of equivalence classes % 3. A distinction is made with regards % to case as noted below. -% 4. Special characters are ignored +% 4. Special characters are ignored % when comparing letters, but then % they are considered % 5. The alphabets are sorted in order @@ -62,10 +67,10 @@ collating-symbol % and Spanish being treated % as one letter. -% The ...... collating +% The ...... collating % symbols have defined weights as % the last character in a group of -% Latin letters. They are used +% Latin letters. They are used % to specify deltas by locales using % a locale as the default ordering % and by "replace-after" statements @@ -987,7 +992,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + "";"";"";IGNORE "";"";"";IGNORE "";"";"";IGNORE @@ -1002,7 +1007,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1017,7 +1022,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1036,7 +1041,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE > ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1087,14 +1092,14 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE > ;;;IGNORE > ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + "";"";"";IGNORE "";"";"";IGNORE "";"";"";IGNORE @@ -1117,7 +1122,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1136,7 +1141,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1171,14 +1176,14 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + "";"";"";IGNORE "";"";"";IGNORE ;;;IGNORE ;;;IGNORE > ;;;IGNORE > ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1193,7 +1198,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1215,7 +1220,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE > ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1224,7 +1229,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1244,7 +1249,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE <'n> ;;;IGNORE - + "";"";"";IGNORE "";"";"";IGNORE ;;;IGNORE @@ -1312,7 +1317,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE "";"";"";IGNORE @@ -1323,10 +1328,10 @@ UNDEFINED IGNORE;IGNORE;IGNORE

;;;IGNORE

;;;IGNORE

;;;;;;/ + ;;;;;;;/ + >;;;;;;/ + ;;>;;;;/ + >;;;;;;/ + >;;;;;/ + ;>;;;;;/ + ;;;>;;;/ + ;;;;;;/ + ;>;;;;/ + >;;;;;/ + ;;;>;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;>;;/ + ;;;;;;/ + ;;;;>;/ + >;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;<=">;;<%">;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;>;;;/ + >;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;>;;/ + ;;;;;/ + >;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;>;/ + ;;>;;/ + ;;;;;/ + ;;;;;;/ + >;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;/ + ;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;; + +lower ;;;;;;;/ + ;;;;;;;/ + ;

;;;;;;/ + ;;;;;;;/ + ;>;;;;;/ + ;;;>;;;/ + ;>;;;;;/ + ;>;;;;/ + ;;>;;;;/ + ;;;;;>;/ + ;;;;;;/ + ;;;>;;;/ + ;>;;;;/ + ;;;;>;;/ + ;;;;;;/ + ;;;<'n>;;;/ + ;;;;;;/ + ;>;;;;;/ + ;;;;;;/ + ;>;>;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;<*s>;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;<='>;;<%'>;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;>;;;/ + >;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;>;;/ + ;;;;;/ + >;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;>;/ + ;;>;;/ + ;;;;;/ + ;;;;;;/ + >;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;/ + ;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;;/ + '>;!>;2>;?>;/ + -.>;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;<(a)>;/ + <(b)>;<(c)>;<(d)>;<(e)>;<(f)>;/ + <(g)>;<(h)>;<(i)>;<(j)>;<(k)>;/ + <(l)>;<(m)>;<(n)>;<(o)>;<(p)>;/ + <(q)>;<(r)>;<(s)>;<(t)>;<(u)>;/ + <(v)>;<(w)>;<(x)>;<(y)>;<(z)>;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;; + +alpha ;;;;;;;/ + ;;;;;;;/ + ;

;;;;;;/ + ;;;;;;;/ + ;;;;;;;/ + ;;;;;;

;/ + ;;;;;;;/ + ;;;<-->;;;/ + >;;;;;;/ + ;;>;;;;/ + >;;;;;;/ + >;;;;;/ + ;>;;;;;/ + ;;>;;;;/ + ;;;;>;;/ + ;;>;;;;/ + ;;>;;;/ + ;;;>;;/ + ;;;;;;/ + ;;;;;>;/ + >;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;>;>;;/ + ;;;;;>;/ + >;;;;;/ + ;;;;;;/ + ;;;;>;/ + >;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;<'n>;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;>;/ + >;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;;/ + >;>;>;>;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + <;S>;<1/>>;<1!>;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;<*s>;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;<=">;;/ + <%">;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + <='>;;<%'>;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;

;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;>;>;/ + ;;;;>;/ + >;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;>;/ + >;;;;;/ + ;;;;;/ + ;;;>;>;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;/ + ;;;;;/ + ;;>;>;;/ + ;;;>;/ + >;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;>;/ + >;;;;;/ + ;;;;'>;/ + '>;!>;!>;2>;/ + 2>;?>;?>;-.>;/ + -.>;;;;/ + ;;;;;/ + ;;;;;/ + ;;;'>;'>;/ + !>;!>;2>;2>;/ + ?>;?>;-.>;-.>;/ + ;;;;;/ + ;;;'>;'>;/ + !>;!>;2>;2>;/ + ?>;?>;-.>;-.>;/ + ;;;;;/ + ;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;/ + ;;;;;/ + ;;;;;<(a)>;/ + <(b)>;<(c)>;<(d)>;<(e)>;<(f)>;/ + <(g)>;<(h)>;<(i)>;<(j)>;<(k)>;/ + <(l)>;<(m)>;<(n)>;<(o)>;<(p)>;/ + <(q)>;<(r)>;<(s)>;<(t)>;<(u)>;/ + <(v)>;<(w)>;<(x)>;<(y)>;<(z)>;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;;;/ + ;;;; + +cntrl ;;;;;;/ + ;;;;;;/ + ;;;;
;;/ + ;;;;;;/ + ;;;;;;/ + ;;
;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;;;;/ + ;;;; + +punct ;<">;;;<%>;<&>;<'>;/ + <(>;<)>;<*>;<+>;<,>;<->;<.>;/ + ;<:>;<;>;<<>;<=>;>;;/ + ;<<(>;;<)/>>;<'/>>;/ + <_>;<'!>;<(!>;;;<'?>;/ + ;;;;;;/ + ;<':>;;<-a>;<<<>;;/ + ;<'m>;;<+->;<2S>;<3S>;/ + <''>;;;<.M>;<',>;<1S>;/ + <-o>;/>>;<14>;<12>;<34>;/ + ;<*X>;<-:>;<'<>;<'(>;<'.>;/ + <'0>;<';>;<1?>;<'">;<'G>;<,G>;/ + ;;<'*>;<'%>;<.*>;;/ + <,+>;<;+>;;<++>;<:+>;<"+>;/ + <=+>;;<'+>;<1+>;<3+>;<0+>;/ + <0a>;<1a>;<2a>;<3a>;<4a>;<5a>;/ + <6a>;<7a>;<8a>;<9a>;<,,>;;/ + ;<,!>;<,'>;;<;!>;<;'>;/ + ;;;<;;>;<1N>;<1M>;/ + <3M>;<4M>;<6M>;;;<1T>;/ + <1H>;<-1>;<-N>;<-M>;<-3>;;/ + <=2>;<'6>;<'9>;<.9>;<9'>;<"6>;/ + <"9>;<:9>;<9">;;;/ + ;<..>;<.3>;<%0>;<1'>;<2'>;/ + <3'>;<1">;<2">;<3">;;<<1>;/ + 1>;<:X>;;<'->;<0S>;/ + <4S>;<5S>;<6S>;<7S>;<8S>;<9S>;/ + <+S>;<-S>;<=S>;<(S>;<)S>;<0s>;/ + <1s>;<2s>;<3s>;<4s>;<5s>;<6s>;/ + <7s>;<8s>;<9s>;<+s>;<-s>;<=s>;/ + <(s>;<)s>;;
  • ;;;/ + ;;;;;;/ + ;;;;<13>;<23>;/ + <15>;<25>;<35>;<45>;<16>;<56>;/ + <18>;<38>;<58>;<78>;<1R>;<2R>;/ + <3R>;<4R>;<5R>;<6R>;<7R>;<8R>;/ + <9R>;;
    ;;<50R>;/ + <100R>;<500R>;<1000R>;<1r>;/ + <2r>;<3r>;<4r>;<5r>;<6r>;<7r>;/ + <8r>;<9r>;;
    ;;<50r>;/ + <100r>;<500r>;<1000r>;/ + <1000RCD>;<5000R>;<10000R>;/ + <<->;<-!>;<-/>>;<-v>;<>;/ + ;<;>;>;/ + <;;V>;<<=>;<=/>>;/ + <==>;;;;;;/ + ;<(->;<-)>;<*P>;<+Z>;<-2>;/ + <-+>;<.+>;;<*->;;;/ + ;<0(>;<00>;<-L>;<-V>;;/ + ;;<(U>;<)U>;;;/ + ;<.:>;<:.>;<:R>;<::>;;/ + ;;;;<=?>;;/ + ;<=3>;<=<>;=>;<<*>;/ + <*/>>;;>;<(C>;<)C>;/ + <(_>;<)_>;<0.>;<02>;<-T>;<.P>;/ + <:3>;;<<7>;7>;<7<>;/ + <7/>>;;<(A>;;;;/ + <;>;;<1h>;<3h>;/ + <2h>;<4h>;<1j>;<2j>;<3j>;<4j>;/ + <1-o>;<2-o>;<3-o>;<4-o>;<5-o>;/ + <6-o>;<7-o>;<8-o>;<9-o>;<10-o>;/ + <11-o>;<12-o>;<13-o>;<14-o>;/ + <15-o>;<16-o>;<17-o>;<18-o>;/ + <19-o>;<20-o>;<(1)>;<(2)>;/ + <(3)>;<(4)>;<(5)>;<(6)>;<(7)>;/ + <(8)>;<(9)>;<(10)>;<(11)>;/ + <(12)>;<(13)>;<(14)>;<(15)>;/ + <(16)>;<(17)>;<(18)>;<(19)>;/ + <(20)>;<1.>;<2.>;<3.>;<4.>;/ + <5.>;<6.>;<7.>;<8.>;<9.>;<10.>;/ + <11.>;<12.>;<13.>;<14.>;<15.>;/ + <16.>;<17.>;<18.>;<19.>;<20.>;/ + <0-o>;;;;;<3->;/ + <3_>;<3!>;<3//>;<4->;<4_>;<4!>;/ + <4//>;;;;;
    ;/ +
    ;
    ;;;;;/ + ;
  • ;;;IGNORE - + ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1347,7 +1352,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE "";"";"";IGNORE @@ -1367,7 +1372,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1388,7 +1393,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE > ;;;IGNORE ;;;IGNORE ;;;IGNORE - + "";"";"";IGNORE "";"";"";IGNORE ;;;IGNORE @@ -1451,7 +1456,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1460,7 +1465,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1475,14 +1480,14 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1501,7 +1506,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -1518,7 +1523,7 @@ UNDEFINED IGNORE;IGNORE;IGNORE ;;;IGNORE ;;;IGNORE ;;;IGNORE - + ;;;IGNORE ;;;IGNORE ;;;IGNORE @@ -2086,69 +2091,983 @@ order_end END LC_COLLATE LC_CTYPE -copy "en_DK" + +digit <0>;<1>;<2>;<3>;<4>;/ + <5>;<6>;<7>;<8>;<9> + +xdigit <0>;<1>;<2>;<3>;<4>;/ + <5>;<6>;<7>;<8>;<9>;/ + ;;;;;;/ + ;;;;; + +blank ;; + +space ;;;;/ + ;; + +upper ;;;;;;;/ + ;;;;;;;/ + ;