From 24bfa3afb9a8fbf5115f8f39a26b5eaf8db782c5 Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Fri, 22 Feb 2002 00:09:23 +0000 Subject: [PATCH] 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 --- ChangeLog | 7 +++++++ src/defaultfont.c | 2 +- src/defaultfont.h | 4 ++-- src/options.c | 4 ++++ 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5e36047..6636574 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ---------------------------------------------------------------------- +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. :-) +---------------------------------------------------------------------- diff --git a/src/defaultfont.c b/src/defaultfont.c index 63d8942..09c517a 100644 --- a/src/defaultfont.c +++ b/src/defaultfont.c @@ -130,7 +130,7 @@ const struct name2encoding l2e[] = { * I'd like these names edited by native speakers. * * 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[] = { #ifdef MULTI_CHARSET diff --git a/src/defaultfont.h b/src/defaultfont.h index 873850b..81deb3b 100644 --- a/src/defaultfont.h +++ b/src/defaultfont.h @@ -18,7 +18,7 @@ extern void eterm_default_font_locale(char ***fonts, char ***mfonts, char **menc * List of encoding labels. * 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, * 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. * */ diff --git a/src/options.c b/src/options.c index 02977c5..5c2dd06 100644 --- a/src/options.c +++ b/src/options.c @@ -56,6 +56,10 @@ static const char cvs_ident[] = "$Id$"; #include "windows.h" #include "defaultfont.h" +#ifndef CONFIG_BUFF +# define CONFIG_BUFF 20480 +#endif + static void *parse_color(char *, void *); static void *parse_attributes(char *, void *); static void *parse_toggles(char *, void *);