From 5303d5dd81123cdd53e71264ce2bbd7b5df635a9 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Thu, 2 May 2013 23:54:07 +0900 Subject: [PATCH] (load_char_attribute_maybe_cos): Return NULL instead of Qunbound as the default value. --- src/chartab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chartab.c b/src/chartab.c index ea4860f..3bc2604 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -4224,13 +4224,13 @@ load_char_attribute_maybe_cos (Lisp_Char_Table* cit, Emchar ch) COS_object val; if (char_table_open_db_maybe (cit)) - return Qunbound; + return NULL; val = char_table_get_db_cos (cit, ch); return val; } - return Qunbound; + return NULL; } #endif -- 1.7.10.4