diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 02:38:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 02:38:44 +0000 |
commit | a0dc52061fd8d47c37bbd363533ae0a4307e507c (patch) | |
tree | 7b44e3c280a8c39bc7f4c13b426eee8a40dda66d /locale/programs/locfile-token.h | |
parent | 372f94ba46f2b64aa2d99085112816789db3fe41 (diff) | |
download | glibc-a0dc52061fd8d47c37bbd363533ae0a4307e507c.tar.gz glibc-a0dc52061fd8d47c37bbd363533ae0a4307e507c.tar.xz glibc-a0dc52061fd8d47c37bbd363533ae0a4307e507c.zip |
Update.
2000-04-06 Ulrich Drepper <drepper@redhat.com> * locale/programs/charmap.c (charmap_new_char): Add parameter step. Support ..(2).. ellipsis. (parse_charmap): Recognize ..(2).. etc and pass step down. Correctly generate names for UCS4 characters. * locale/programs/ld-ctype.c (struct translit_ignore_t): Add step. (ctype_finish): We know the wide character value for <SP>, don't search. (charclass_symbolic_ellipsis): Handle ..(2).. ellipsis. (charclass_ucs4_ellipsis): Likewise. (read_translit_ignore_entry): Store ellipsis step. (ctype_read): Recognize ..(2).. etc and pass step down. * locale/programs/linereader.c (lr_token): When seeing comment character ignore only rest of line in sources but stop at escaped newline. Recognize ..(2).. and ....(2)..... * locale/programs/locfile-token.h (enum token_t): Add tok_ellipsis2_2 and tok_ellipsis4_2.
Diffstat (limited to 'locale/programs/locfile-token.h')
-rw-r--r-- | locale/programs/locfile-token.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/locale/programs/locfile-token.h b/locale/programs/locfile-token.h index e1cd5f7a74..6eecc5618a 100644 --- a/locale/programs/locfile-token.h +++ b/locale/programs/locfile-token.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.org>, 1996. @@ -31,6 +31,8 @@ enum token_t tok_ellipsis2, tok_ellipsis3, tok_ellipsis4, + tok_ellipsis2_2, + tok_ellipsis4_2, tok_semicolon, tok_comma, tok_open_brace, |