diff options
Diffstat (limited to 'contrib/texinfo/makeinfo/lang.h')
-rw-r--r-- | contrib/texinfo/makeinfo/lang.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/texinfo/makeinfo/lang.h b/contrib/texinfo/makeinfo/lang.h index b78ce9c31704..a1e9489898d1 100644 --- a/contrib/texinfo/makeinfo/lang.h +++ b/contrib/texinfo/makeinfo/lang.h @@ -1,7 +1,7 @@ /* lang.h -- declarations for language codes etc. - $Id: lang.h,v 1.3 2002/11/07 16:10:49 karl Exp $ + $Id: lang.h,v 1.4 2003/05/01 00:05:27 karl Exp $ - Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -80,9 +80,9 @@ extern language_type language_table[]; typedef enum { no_encoding, US_ASCII, - ISO_8859_1, /* default for en, de, */ - ISO_8859_2, /* actualy not supported like the rest below */ - ISO_8859_3, + ISO_8859_1, + ISO_8859_2, + ISO_8859_3, /* this and none of the rest are supported. */ ISO_8859_4, ISO_8859_5, ISO_8859_6, @@ -118,7 +118,7 @@ typedef struct typedef struct { encoding_code_type ec; /* document encoding type (see above enum) */ - char *ecname; /* encoding name like ISO-8859-1 */ + char *encname; /* encoding name like "ISO-8859-1", valid in Emacs */ iso_map_type *isotab; /* address of ISO translation table */ } encoding_type; |