From: MORIOKA Tomohiko Date: Thu, 2 May 2013 14:54:07 +0000 (+0900) Subject: (load_char_attribute_maybe_cos): Return NULL instead of Qunbound as X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5303d5dd81123cdd53e71264ce2bbd7b5df635a9;p=chise%2Fxemacs-chise.git (load_char_attribute_maybe_cos): Return NULL instead of Qunbound as the default value. --- 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