Thu Feb 21 19:06:18 2002 Michael Jennings (mej)

I think Ted made the right call for the wrong reason.  I'm adding the
fallback value for CONFIG_BUFF so that people using the older libast
will be able to use 0.9.2.  I'd like to get 0.9.2 out the door soon,
but libast 0.5 is far from ready. :-)


SVN revision: 5967
This commit is contained in:
Michael Jennings 2002-02-22 00:09:23 +00:00
parent 2bf446299e
commit 24bfa3afb9
4 changed files with 14 additions and 3 deletions

View File

@ -4518,3 +4518,10 @@ have multiple locales on my system, but what I did test looked fine.
I also fixed a CONFIG_BUFF constant missing from options.h I also fixed a CONFIG_BUFF constant missing from options.h
---------------------------------------------------------------------- ----------------------------------------------------------------------
Thu Feb 21 19:06:18 2002 Michael Jennings (mej)
I think Ted made the right call for the wrong reason. I'm adding the
fallback value for CONFIG_BUFF so that people using the older libast
will be able to use 0.9.2. I'd like to get 0.9.2 out the door soon,
but libast 0.5 is far from ready. :-)
----------------------------------------------------------------------

View File

@ -130,7 +130,7 @@ const struct name2encoding l2e[] = {
* I'd like these names edited by native speakers. * I'd like these names edited by native speakers.
* *
* enc_label --> ENCODING_METHOD and font informations * enc_label --> ENCODING_METHOD and font informations
* which as needed for Rxvt to work. * which as needed for Eterm to work.
*/ */
const struct defaultfont defaultfont[] = { const struct defaultfont defaultfont[] = {
#ifdef MULTI_CHARSET #ifdef MULTI_CHARSET

View File

@ -18,7 +18,7 @@ extern void eterm_default_font_locale(char ***fonts, char ***mfonts, char **menc
* List of encoding labels. * List of encoding labels.
* Note "encoding" is not "character set" nor "encoding method". * Note "encoding" is not "character set" nor "encoding method".
* *
* In Rxvt, "encoding" is implemented as a pair of "encoding method" * In Eterm, "encoding" is implemented as a pair of "encoding method"
* (implemented as ENC_METHOD in screen.h) and font specification, * (implemented as ENC_METHOD in screen.h) and font specification,
* i.e., defaultfont[] in this file. * i.e., defaultfont[] in this file.
* *
@ -49,7 +49,7 @@ struct name2encoding {
}; };
/* /*
* Used for tables of encoding labels -> Rxvt internal informations. * Used for tables of encoding labels -> Eterm internal informations.
* *
*/ */

View File

@ -56,6 +56,10 @@ static const char cvs_ident[] = "$Id$";
#include "windows.h" #include "windows.h"
#include "defaultfont.h" #include "defaultfont.h"
#ifndef CONFIG_BUFF
# define CONFIG_BUFF 20480
#endif
static void *parse_color(char *, void *); static void *parse_color(char *, void *);
static void *parse_attributes(char *, void *); static void *parse_attributes(char *, void *);
static void *parse_toggles(char *, void *); static void *parse_toggles(char *, void *);