mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-09 14:07:34 +02:00
Fix to Cyc_is_reserved_symbol()
This commit is contained in:
parent
370af953c7
commit
602295e29c
1 changed files with 1 additions and 1 deletions
|
@ -614,7 +614,7 @@ object Cyc_is_symbol(object o){
|
|||
return boolean_f;}
|
||||
|
||||
object Cyc_is_reserved_symbol(object o) {
|
||||
if (Cyc_is_symbol(o) == boolean_t && equalp(o, quote_Cyc_191procedure))
|
||||
if (Cyc_is_symbol(o) == boolean_t && equal(o, quote_Cyc_191procedure))
|
||||
return boolean_t;
|
||||
return boolean_f; }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue