Bugfix, extract string using the proper helper, not the symbol one

This commit is contained in:
Justin Ethier 2015-10-08 22:04:13 -04:00
parent a47869a43f
commit 9b0b7af93e

View file

@ -868,9 +868,9 @@ string_type Cyc_symbol2string(object sym) {
object Cyc_string2symbol(object str) { object Cyc_string2symbol(object str) {
object sym; object sym;
Cyc_check_str(str); Cyc_check_str(str);
sym = find_symbol_by_name(symbol_pname(str)); sym = find_symbol_by_name(string_str(str));
if (!sym) { if (!sym) {
sym = add_symbol_by_name(symbol_pname(str)); sym = add_symbol_by_name(string_str(str));
} }
return sym; return sym;
} }