From a2886facc12051f934d5b9b7a18240d8c9e5d558 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Sun, 21 Apr 2013 16:44:52 +0900 Subject: [PATCH] (cos_release_symbol): Treat `composition' as a builtin symbol. --- symbol.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/symbol.c b/symbol.c index 2ff8819..96d1fee 100644 --- a/symbol.c +++ b/symbol.c @@ -98,7 +98,8 @@ cos_release_symbol (COS_Object obj) if (obj == NULL) return 0; - if ( (obj == cos_Qnil) || (obj == cos_Qt) ) + if ( (obj == cos_Qnil) || (obj == cos_Qt) || + (obj == cos_Qcomposition) ) return 0; if ( ((COS_Symbol)obj)->value != NULL) -- 1.7.10.4