From 4c911328a057a7fc770b5e8a5edb460c0a275c9d Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 12 Jul 2005 09:56:16 +0000 Subject: [PATCH] (Fget_range_char_table): Fix serious problem when `range' is nil. --- src/chartab.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/chartab.c b/src/chartab.c index 6eb6b32..425e2ba 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -2328,6 +2328,11 @@ If there is more than one value, return MULTI (defaults to nil). #endif /* not UTF2000 */ #endif /* not MULE */ +#ifdef UTF2000 + case CHARTAB_RANGE_DEFAULT: + return ct->default_value; +#endif /* not UTF2000 */ + default: ABORT (); } -- 1.7.10.4